From 599d2ed3505de669a2db1cdec22c7db12dc3044c Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 12 Feb 2001 18:02:37 +0000 Subject: ifup-post could be called from places other than ifup, so recheck $FWACTIVE here --- sysconfig/network-scripts/ifup-post | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sysconfig/network-scripts/ifup-post b/sysconfig/network-scripts/ifup-post index 9ea7ffbe..14871708 100755 --- a/sysconfig/network-scripts/ifup-post +++ b/sysconfig/network-scripts/ifup-post @@ -80,6 +80,12 @@ if [ "$PEERDNS" != "no" -o -n "$RESOLV_MODS" -a "$RESOLV_MODS" != "no" ]; then fi fi +FWACTIVE= +if [ -f /etc/sysconfig/ipchains -a "`ipchains -L input -n 2>&1 | awk 'END { print NR }'`" -gt 1 ]; then + FWACTIVE=1 + export FWACTIVE +fi + if [ "$FIREWALL_MODS" != "no" -a -n "$FWACTIVE" ]; then ns=`awk '/^nameserver / { print $2 }' /etc/resolv.conf` if [ -n "$ns" ]; then -- cgit v1.2.1