aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2002-08-15 17:58:11 +0000
committerBill Nottingham <notting@redhat.com>2002-08-15 17:58:11 +0000
commitfb7039d0881f2c35c7263e92ccd3d29be1674779 (patch)
tree71789ac40fb825658e1ea2c668a3443cad2be561
parentcca968d95b5fe2264f09170b4b65fc32554b8086 (diff)
downloadinitscripts-fb7039d0881f2c35c7263e92ccd3d29be1674779.tar
initscripts-fb7039d0881f2c35c7263e92ccd3d29be1674779.tar.gz
initscripts-fb7039d0881f2c35c7263e92ccd3d29be1674779.tar.bz2
initscripts-fb7039d0881f2c35c7263e92ccd3d29be1674779.tar.xz
initscripts-fb7039d0881f2c35c7263e92ccd3d29be1674779.zip
switch to -I (#71201)
-rwxr-xr-xsysconfig/network-scripts/ifup2
-rwxr-xr-xsysconfig/network-scripts/ifup-post2
2 files changed, 2 insertions, 2 deletions
diff --git a/sysconfig/network-scripts/ifup b/sysconfig/network-scripts/ifup
index d80fd87c..48f15201 100755
--- a/sysconfig/network-scripts/ifup
+++ b/sysconfig/network-scripts/ifup
@@ -178,7 +178,7 @@ if [ -n "${DYNCONFIG}" ]; then
# what DNS server they're using until they are done.
FWHACK=
if [ -n "$FWACTIVE" -a "$FIREWALL_MODS" != "no" ]; then
- iptables -A RH-Lokkit-0-50-INPUT -m udp -s 0/0 --sport 53 -d 0/0 --dport 1025:65535 -p udp -j ACCEPT
+ iptables -I RH-Lokkit-0-50-INPUT -m udp -s 0/0 --sport 53 -d 0/0 --dport 1025:65535 -p udp -j ACCEPT
FWHACK=1
fi
diff --git a/sysconfig/network-scripts/ifup-post b/sysconfig/network-scripts/ifup-post
index 95afdafa..97c002fc 100755
--- a/sysconfig/network-scripts/ifup-post
+++ b/sysconfig/network-scripts/ifup-post
@@ -88,7 +88,7 @@ if [ "$FIREWALL_MODS" != "no" -a -f /etc/sysconfig/iptables ] && \
if [ -n "$ns" ]; then
for nameserver in $ns ; do
if ! iptables -L RH-Lokkit-0-50-INPUT -n | grep -q $nameserver ; then
- iptables -A RH-Lokkit-0-50-INPUT -m udp -s $nameserver/32 --sport 53 -d 0/0 --dport 1025:65535 -p udp -j ACCEPT
+ iptables -I RH-Lokkit-0-50-INPUT -m udp -s $nameserver/32 --sport 53 -d 0/0 --dport 1025:65535 -p udp -j ACCEPT
[ -x /usr/bin/logger ] && logger $"punching nameserver $nameserver through the firewall"
fi
done