aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2009-12-10 15:58:57 -0500
committerLukas Nykryn <lnykryn@redhat.com>2014-01-15 15:17:03 +0100
commit8eb6830015b4328141b17d2e69bd106c067b4f7a (patch)
treefcce73342e1f6c9453303a6d2354ebb7bb71461f /rc.d
parent9baa0f88820005d6900aeb6d1739c94e5f1cd628 (diff)
downloadinitscripts-8eb6830015b4328141b17d2e69bd106c067b4f7a.tar
initscripts-8eb6830015b4328141b17d2e69bd106c067b4f7a.tar.gz
initscripts-8eb6830015b4328141b17d2e69bd106c067b4f7a.tar.bz2
initscripts-8eb6830015b4328141b17d2e69bd106c067b4f7a.tar.xz
initscripts-8eb6830015b4328141b17d2e69bd106c067b4f7a.zip
Delete IPX support.
Conflicts: rc.d/init.d/network sysconfig.txt sysconfig/network-scripts/ifup-ipx
Diffstat (limited to 'rc.d')
-rwxr-xr-xrc.d/init.d/network20
1 files changed, 0 insertions, 20 deletions
diff --git a/rc.d/init.d/network b/rc.d/init.d/network
index b4ce2b31..e48c99b0 100755
--- a/rc.d/init.d/network
+++ b/rc.d/init.d/network
@@ -33,8 +33,6 @@ fi
# if the ip configuration utility isn't around we can't function.
[ -x /sbin/ip ] || exit 1
-# Even if IPX is configured, without the utilities we can't do much
-[ ! -x /sbin/ipx_internal_net ] || [ ! -x /sbin/ipx_configure ] && IPX=
CWD=$(pwd)
cd /etc/sysconfig/network-scripts
@@ -66,16 +64,6 @@ case "$1" in
# bring up loopback interface
action $"Bringing up loopback interface: " ./ifup ifcfg-lo
- case "$IPX" in
- yes|true)
- /sbin/ipx_configure --auto_primary=$IPXAUTOPRIMARY \
- --auto_interface=$IPXAUTOFRAME
- if [ "$IPXINTERNALNETNUM" != "0" ]; then
- /sbin/ipx_internal_net add $IPXINTERNALNETNUM $IPXINTERNALNODENUM
- fi
- ;;
- esac
-
case "$VLAN" in
yes)
if [ ! -d /proc/net/vlan ] && ! modprobe 8021q >/dev/null 2>&1 ; then
@@ -226,14 +214,6 @@ case "$1" in
)
done
- case "$IPX" in
- yes|true)
- if [ "$IPXINTERNALNETNUM" != "0" ]; then
- /sbin/ipx_internal_net del
- fi
- ;;
- esac
-
action $"Shutting down loopback interface: " ./ifdown ifcfg-lo
sysctl -w net.ipv4.ip_forward=0 > /dev/null 2>&1