salt-common/sls/gentoo/selinux.sls
Alexander Miroshnichenko 045e3fae1d
Selinux (#18)
* Add basic selinux state
2019-06-20 18:27:48 +03:00

11 lines
271 B
Plaintext

{% if grains.selinux is defined and grains.selinux.enabled == True %}
{% for boolean in ['global_ssp','init_daemons_use_tty','tmpfiles_manage_all_non_security'] %}
{{ boolean }}:
selinux.boolean:
- value: True
- persist: True
{% endfor %}
{% endif %}