1
0
mirror of https://github.com/SELinuxProject/refpolicy synced 2025-03-23 11:36:35 +00:00
selinux-refpolicy/support/set_bools_tuns.awk
2006-07-12 20:32:27 +00:00

12 lines
209 B
Awk

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