diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rwxr-xr-x | sysconfig/network-scripts/ifup | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2001-02-06 Bill Nottingham <notting@redhat.com> + * ChangeLog, initscripts.spec: + 5.62-1 + * sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-post, sysconfig.txt: modify the firewall to allow any (new) DNS servers through on ifup diff --git a/sysconfig/network-scripts/ifup b/sysconfig/network-scripts/ifup index b661f5bf..ffac27aa 100755 --- a/sysconfig/network-scripts/ifup +++ b/sysconfig/network-scripts/ifup @@ -95,7 +95,7 @@ fi # Is there a firewall running, and does it look like one we configured? FWACTIVE= -if [ -f /etc/sysconfig/ipchains -a "ipchains -L input -n 2>&1 | awk 'END { print NR }'" -gt 1 ]; then +if [ -f /etc/sysconfig/ipchains -a "`ipchains -L input -n 2>&1 | awk 'END { print NR }'`" -gt 1 ]; then FWACTIVE=1 export FWACTIVE fi |