mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
25 lines
1.5 KiB
ReStructuredText
25 lines
1.5 KiB
ReStructuredText
.. _selinux:
|
|
|
|
selinux
|
|
```````
|
|
|
|
.. versionadded:: 0.7
|
|
|
|
Configures the SELinux mode and policy. A reboot may be required after usage. Ansible will not issue this reboot but
|
|
will let you know when it is required.
|
|
|
|
+--------------------+----------+---------------------+----------------------------------------------------------------------------+
|
|
| parameter | required | default | comments |
|
|
+====================+==========+=====================+============================================================================+
|
|
| policy | yes | | name of the SELinux policy to use (example: 'targeted') |
|
|
+--------------------+----------+---------------------+----------------------------------------------------------------------------+
|
|
| state | yes | | the SELinux mode. 'enforcing', 'permissive', or 'disabled' |
|
|
+--------------------+----------+---------------------+----------------------------------------------------------------------------+
|
|
| conf | no | /etc/selinux/config | path to the SELinux configuration file, if non-standard |
|
|
+--------------------+----------+---------------------+----------------------------------------------------------------------------+
|
|
|
|
Example from Ansible :doc:`playbooks`::
|
|
|
|
selinux policy=targeted state=enforcing
|
|
selinux policy=targeted state=disabled
|
|
|