selinux-refpolicy/support/set_bools_tuns.awk

12 lines
208 B
Awk
Raw Normal View History

# Read booleans.conf and output M4 directives to
# override default settings in global_booleans
BEGIN {
FS="="
}
2016-12-06 12:28:10 +00:00
/^[[:blank:]]*[[:alpha:]]+/{
gsub(/[[:blank:]]*/,"")
print "define(`"$1"_conf',`"$2"')"
}