Commit 7e3e260d57d3164aca047df36516affce1aa021d
1 parent
4c305895
Exists in
master
and in
90 other branches
selinux: copy config from production
Leading and traling blank lines removed, "managed with chef" commend added.
Showing
1 changed file
with
9 additions
and
0 deletions
Show diff stats
cookbooks/basics/files/default/selinux_config
1 | 1 | # MANAGED WITH CHEF. DO NOT CHANGE BY HAND |
2 | 2 | |
3 | +# This file controls the state of SELinux on the system. | |
4 | +# SELINUX= can take one of these three values: | |
5 | +# enforcing - SELinux security policy is enforced. | |
6 | +# permissive - SELinux prints warnings instead of enforcing. | |
7 | +# disabled - No SELinux policy is loaded. | |
3 | 8 | SELINUX=enforcing |
9 | +# SELINUXTYPE= can take one of these two values: | |
10 | +# targeted - Targeted processes are protected, | |
11 | +# minimum - Modification of targeted policy. Only selected processes are protected. | |
12 | +# mls - Multi Level Security protection. | |
4 | 13 | SELINUXTYPE=targeted | ... | ... |