aboutsummaryrefslogtreecommitdiffstats
path: root/sysconfig/network-scripts/ifup-aliases
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>1999-04-12 16:59:18 +0000
committerBill Nottingham <notting@redhat.com>1999-04-12 16:59:18 +0000
commit91fd228098bf5650701c1b86817c3b1d1be1056f (patch)
tree9bb92c22ff727a725682e704a3ee76ed43fc617f /sysconfig/network-scripts/ifup-aliases
parent598c3dd75dbe2dd27edcb8ad19661046dab00e0d (diff)
downloadinitscripts-91fd228098bf5650701c1b86817c3b1d1be1056f.tar
initscripts-91fd228098bf5650701c1b86817c3b1d1be1056f.tar.gz
initscripts-91fd228098bf5650701c1b86817c3b1d1be1056f.tar.bz2
initscripts-91fd228098bf5650701c1b86817c3b1d1be1056f.tar.xz
initscripts-91fd228098bf5650701c1b86817c3b1d1be1056f.zip
remove 2.0 kernel support
Diffstat (limited to 'sysconfig/network-scripts/ifup-aliases')
-rwxr-xr-xsysconfig/network-scripts/ifup-aliases13
1 files changed, 2 insertions, 11 deletions
diff --git a/sysconfig/network-scripts/ifup-aliases b/sysconfig/network-scripts/ifup-aliases
index ad4d195c..7e06b489 100755
--- a/sysconfig/network-scripts/ifup-aliases
+++ b/sysconfig/network-scripts/ifup-aliases
@@ -13,10 +13,6 @@ if [ -x /bin/linuxconf -a -f /usr/lib/libncurses.so.4.2 ] ; then
# add <device> <ip>
# del <device>
# reload <number_of_aliases>
- KERN20=
- if uname -r | grep -q "^2\.0"; then
- KERN20=true
- fi
linuxconf --hint ipalias $1 | while read verb arg1 arg2 arg3 arg4; do
case $verb in
add)
@@ -27,16 +23,11 @@ if [ -x /bin/linuxconf -a -f /usr/lib/libncurses.so.4.2 ] ; then
# new linuxconf
/sbin/ifconfig $arg1 $arg2 netmask $arg3 broadcast $arg4
fi
- [ -n "$KERN20" ] && /sbin/route add $arg2 $arg1
;;
del)
- # the <device>- 0.0.0.0 tells the kernel to remove the device
+ # the <device> 0.0.0.0 tells the kernel to remove the device
# it is necessary to remove it in order for reload to work.
- if [ -n "$KERN20" ]; then
- /sbin/ifconfig ${arg1}- 0.0.0.0
- else
- /sbin/ifconfig ${arg1} 0.0.0.0
- fi
+ /sbin/ifconfig ${arg1} 0.0.0.0
;;
reload)
echo $arg1 > /proc/sys/net/core/net_alias_max