diff options
author | Jeff Johnson <jbj@redhat.com> | 1998-07-07 21:04:00 +0000 |
---|---|---|
committer | Jeff Johnson <jbj@redhat.com> | 1998-07-07 21:04:00 +0000 |
commit | 0aec842c56b07eb8715d72033da3995c654226ec (patch) | |
tree | 7661d7897c4edfebe273237bf194a749615e83c4 /rc.d/init.d/network | |
parent | 4a43d48815984cd478bf2e3bb87b2172f7c69a8c (diff) | |
download | initscripts-0aec842c56b07eb8715d72033da3995c654226ec.tar initscripts-0aec842c56b07eb8715d72033da3995c654226ec.tar.gz initscripts-0aec842c56b07eb8715d72033da3995c654226ec.tar.bz2 initscripts-0aec842c56b07eb8715d72033da3995c654226ec.tar.xz initscripts-0aec842c56b07eb8715d72033da3995c654226ec.zip |
Permit /usr to be NFS mounted.r3-68
Diffstat (limited to 'rc.d/init.d/network')
-rwxr-xr-x | rc.d/init.d/network | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/rc.d/init.d/network b/rc.d/init.d/network index 3bb2afd5..425d6c38 100755 --- a/rc.d/init.d/network +++ b/rc.d/init.d/network @@ -2,7 +2,7 @@ # # network Bring up/down networking # -# chkconfig: 2345 10 97 +# chkconfig: 2345 10 90 # description: Activates/Deactivates all network interfaces configured to \ # start at boot time. # probe: true @@ -27,7 +27,7 @@ fi [ -x /sbin/ifconfig ] || exit 0 # Even if IPX is configured, without the utilities we can't do much -[ ! -x /usr/bin/ipx_internal_net -o ! -x /usr/bin/ipx_configure ] && IPX= +[ ! -x /sbin/ipx_internal_net -o ! -x /sbin/ipx_configure ] && IPX= cd /etc/sysconfig/network-scripts @@ -74,9 +74,9 @@ case "$1" in case "$IPX" in yes|true) - /usr/bin/ipx_configure --auto_primary=$IPXAUTOPRIMARY \ + /sbin/ipx_configure --auto_primary=$IPXAUTOPRIMARY \ --auto_interface=$IPXAUTOFRAME - /usr/bin/ipx_internal_net add $IPXINTERNALNETNUM $IPXINTERNALNODENUM + /sbin/ipx_internal_net add $IPXINTERNALNETNUM $IPXINTERNALNODENUM ;; esac @@ -92,7 +92,7 @@ case "$1" in done case "$IPX" in yes|true) - /usr/bin/ipx_internal_net del + /sbin/ipx_internal_net del ;; esac ./ifdown ifcfg-lo @@ -144,16 +144,16 @@ case "$1" in case $IPX in yes|true) case $IPXINTERNALNET in reconf) - /usr/bin/ipx_internal_net del - /usr/bin/ipx_internal_net add $IPXINTERNALNETNUM \ + /sbin/ipx_internal_net del + /sbin/ipx_internal_net add $IPXINTERNALNETNUM \ $IPXINTERNALNODENUM ;; add) - /usr/bin/ipx_internal_net add $IPXINTERNALNETNUM \ + /sbin/ipx_internal_net add $IPXINTERNALNETNUM \ $IPXINTERNALNODENUM ;; del) - /usr/bin/ipx_internal_net del + /sbin/ipx_internal_net del ;; esac ;; |