From 0aec842c56b07eb8715d72033da3995c654226ec Mon Sep 17 00:00:00 2001 From: Jeff Johnson Date: Tue, 7 Jul 1998 21:04:00 +0000 Subject: Permit /usr to be NFS mounted. --- rc.d/init.d/network | 18 +++++++++--------- rc.d/init.d/nfsfs | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) (limited to 'rc.d/init.d') 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 ;; diff --git a/rc.d/init.d/nfsfs b/rc.d/init.d/nfsfs index 76eccddc..108b8036 100755 --- a/rc.d/init.d/nfsfs +++ b/rc.d/init.d/nfsfs @@ -6,7 +6,7 @@ # # Author: Miquel van Smoorenburg, # -# chkconfig: 345 15 95 +# chkconfig: 345 15 85 # description: Mounts and unmounts all Network File System (NFS) \ # mount points. -- cgit v1.2.1