diff options
author | Bill Nottingham <notting@redhat.com> | 2001-02-06 22:36:36 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2001-02-06 22:36:36 +0000 |
commit | 2c7e821302ef4d6c38da4273792142fdf0db4395 (patch) | |
tree | 779c68e3c5a61a569d5cd9363fbe7230d4035883 | |
parent | 64326b0942ea7c85d31cdd7dc65c27c0abc75772 (diff) | |
download | initscripts-2c7e821302ef4d6c38da4273792142fdf0db4395.tar initscripts-2c7e821302ef4d6c38da4273792142fdf0db4395.tar.gz initscripts-2c7e821302ef4d6c38da4273792142fdf0db4395.tar.bz2 initscripts-2c7e821302ef4d6c38da4273792142fdf0db4395.tar.xz initscripts-2c7e821302ef4d6c38da4273792142fdf0db4395.zip |
fix typo
-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 |