salt.states.selinux

Management of SELinux rules.

If SELinux is available for the running system, the mode can be managed and booleans can be set.

enforcing:
    selinux.mode

samba_create_home_dirs:
    selinux.boolean:
      - value: True
      - persist: True
salt.states.selinux.boolean(name, value, persist=False)

Set up an SELinux boolean

name
The name of the boolean to set
value
The value to set on the boolean
persist
Defaults to False, set persist to true to make the boolean apply on a reboot
salt.states.selinux.mode(name)

Verifies the mode SELinux is running in, can be set to enforcing or permissive

name
The mode to run SELinux in, permissive or enforcing

Parent topic

Table Of Contents

Previous topic

salt.states.rvm

Next topic

salt.states.service