mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #1166 from mavimo/documentation-seboolean
Added DOCUMENTATION to seboolean module.
This commit is contained in:
commit
a00d6d7234
1 changed files with 35 additions and 1 deletions
|
@ -17,6 +17,40 @@
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
DOCUMENTATION = '''
|
||||||
|
---
|
||||||
|
module: seboolean
|
||||||
|
short_description: Toggles SELinux booleans.
|
||||||
|
description:
|
||||||
|
- Toggles SELinux booleans.
|
||||||
|
version_added: "0.7"
|
||||||
|
options:
|
||||||
|
name:
|
||||||
|
description:
|
||||||
|
- Name of the boolean to configure
|
||||||
|
required: true
|
||||||
|
default: null
|
||||||
|
persistent:
|
||||||
|
description:
|
||||||
|
- Set to 'yes' if the boolean setting should survive a reboot
|
||||||
|
required: false
|
||||||
|
default: no
|
||||||
|
choices: [ "yes", "no" ]
|
||||||
|
state:
|
||||||
|
description:
|
||||||
|
- Desired boolean value
|
||||||
|
required: true
|
||||||
|
default: null
|
||||||
|
choices: [ "true", "false" ]
|
||||||
|
examples:
|
||||||
|
- code: seboolean name=httpd_can_network_connect state=true persistent=yes
|
||||||
|
description: Set I(httpd_can_network_connect) SELinux flag to I(true) and I(persistent)
|
||||||
|
notes:
|
||||||
|
- Not tested on any debian based system
|
||||||
|
requirements: [ ]
|
||||||
|
author: Stephen Fromm
|
||||||
|
'''
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import selinux
|
import selinux
|
||||||
HAVE_SELINUX=True
|
HAVE_SELINUX=True
|
||||||
|
|
Loading…
Reference in a new issue