Good day!
I want to completely disable firewall in my spin. The 'firewall --disabled' method in .ks file works only for the LiveCD but not for the HD installation. I have created a quick and dirty workaround for that. I put the following lines in my .ks file and it works:
Code:
sed -i -e 's/--enabled/--disabled/' /etc/sysconfig/system-config-firewall
rm /etc/sysconfig/iptables
rm /etc/sysconfig/ip6tables
The question is, is there a more "kosher" way to disable firewall?
Thanks in advance!