firewall: iptables will load the conntrack modules automatically

This commit is contained in:
Michael Tremer
2015-05-11 13:04:14 +02:00
parent 0f5350608e
commit 4071b2d61b

View File

@@ -421,17 +421,6 @@ iptables_red_down() {
# See how we were called.
case "$1" in
start)
boot_mesg "Loading firewall modules into the kernel"
modprobe iptable_nat || failed=1
for i in $(find /lib/modules/$(uname -r) -name nf_conntrack*); do
modprobe $(basename $i | cut -d. -f1) || failed=1
done
for i in $(find /lib/modules/$(uname -r) -name nf_nat*); do
modprobe $(basename $i | cut -d. -f1) || failed=1
done
(exit ${failed})
evaluate_retval
boot_mesg "Setting up firewall"
iptables_init
evaluate_retval