From: Michael Tremer Date: Mon, 11 May 2015 11:04:14 +0000 (+0200) Subject: firewall: iptables will load the conntrack modules automatically X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4071b2d61bdf3e284395d80a06189d5ae7752c5b;p=people%2Fms%2Fipfire-2.x.git firewall: iptables will load the conntrack modules automatically --- diff --git a/src/initscripts/init.d/firewall b/src/initscripts/init.d/firewall index 7614b51bb2..5d6ac3a295 100644 --- a/src/initscripts/init.d/firewall +++ b/src/initscripts/init.d/firewall @@ -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