mirror of
https://github.com/valitydev/salt-common.git
synced 2024-11-07 02:45:21 +00:00
045e3fae1d
* Add basic selinux state
11 lines
271 B
Plaintext
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 %}
|