mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add seboolean RST
This commit is contained in:
parent
104c3d7d6e
commit
92c37c9c07
1 changed files with 24 additions and 0 deletions
24
rst/modules/seboolean.rst
Normal file
24
rst/modules/seboolean.rst
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
.. _seboolean:
|
||||||
|
|
||||||
|
seboolean
|
||||||
|
`````````
|
||||||
|
|
||||||
|
.. versionadded:: 0.7
|
||||||
|
|
||||||
|
Toggles SELinux booleans.
|
||||||
|
|
||||||
|
+--------------------+----------+---------------------+----------------------------------------------------------------------------+
|
||||||
|
| parameter | required | default | comments |
|
||||||
|
+====================+==========+=====================+============================================================================+
|
||||||
|
| name | yes | | name of the boolean to configure |
|
||||||
|
+--------------------+----------+---------------------+----------------------------------------------------------------------------+
|
||||||
|
| persistent | no | no | set to 'yes' if the boolean setting should survive a reboot |
|
||||||
|
+--------------------+----------+---------------------+----------------------------------------------------------------------------+
|
||||||
|
| state | yes | | desired boolean value. 'true' or 'false'. |
|
||||||
|
+--------------------+----------+---------------------+----------------------------------------------------------------------------+
|
||||||
|
|
||||||
|
Example from Ansible :doc:`playbooks`::
|
||||||
|
|
||||||
|
seboolean name=httpd_can_network_connect state=true persistent=yes
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue