1
0
mirror of https://github.com/SELinuxProject/refpolicy synced 2025-03-22 02:56:37 +00:00
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"')"
}