diff options
Diffstat (limited to 'rc.d/init.d')
-rwxr-xr-x | rc.d/init.d/functions | 4 | ||||
-rwxr-xr-x | rc.d/init.d/halt | 2 | ||||
-rwxr-xr-x | rc.d/init.d/killall | 6 | ||||
-rwxr-xr-x | rc.d/init.d/netfs | 2 | ||||
-rwxr-xr-x | rc.d/init.d/network | 4 | ||||
-rwxr-xr-x | rc.d/init.d/single | 2 |
6 files changed, 10 insertions, 10 deletions
diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions index 3922af3a..0a2457aa 100755 --- a/rc.d/init.d/functions +++ b/rc.d/init.d/functions @@ -1,9 +1,9 @@ #!/bin/sh # # functions This file contains functions to be used by most or all -# shell scripts in the /etc/init.d directory. +# shell scripts in the /etc/rc.d/init.d directory. # -# Version: @(#) /etc/init.d/functions 1.01 26-Oct-1993 +# Version: @(#) /etc/rc.d/init.d/functions 1.01 26-Oct-1993 # # Author: Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org> # Hacked by: Greg Galloway and Marc Ewing diff --git a/rc.d/init.d/halt b/rc.d/init.d/halt index 22f008c9..738a6532 100755 --- a/rc.d/init.d/halt +++ b/rc.d/init.d/halt @@ -11,7 +11,7 @@ # Set the path. PATH=/sbin:/bin:/usr/bin:/usr/sbin -. /etc/init.d/functions +. /etc/rc.d/init.d/functions runcmd() { echo -n "$1 " diff --git a/rc.d/init.d/killall b/rc.d/init.d/killall index 0aff07ac..9d244119 100755 --- a/rc.d/init.d/killall +++ b/rc.d/init.d/killall @@ -11,10 +11,10 @@ for i in /var/lock/subsys/*; do subsys=${i#/var/lock/subsys/} # Bring the subsystem down. - if [ -f /etc/init.d/$subsys.init ]; then - /etc/init.d/$subsys.init stop + if [ -f /etc/rc.d/init.d/$subsys.init ]; then + /etc/rc.d/init.d/$subsys.init stop else - /etc/init.d/$subsys stop + /etc/rc.d/init.d/$subsys stop fi done diff --git a/rc.d/init.d/netfs b/rc.d/init.d/netfs index 39e6ef76..57cb462e 100755 --- a/rc.d/init.d/netfs +++ b/rc.d/init.d/netfs @@ -15,7 +15,7 @@ if [ ! -f /etc/sysconfig/network ]; then fi # Source function library. -. /etc/init.d/functions +. /etc/rc.d/init.d/functions . /etc/sysconfig/network diff --git a/rc.d/init.d/network b/rc.d/init.d/network index 6c79c36b..30025a04 100755 --- a/rc.d/init.d/network +++ b/rc.d/init.d/network @@ -8,7 +8,7 @@ # probe: true # Source function library. -. /etc/init.d/functions +. /etc/rc.d/init.d/functions if [ ! -f /etc/sysconfig/network ]; then exit 0 @@ -88,7 +88,7 @@ case "$1" in SMBMTAB=`grep -v '^#' /proc/mounts | awk '{ if ($3 ~ /^smbfs$/ ) print $2}'` NCPMTAB=`grep -v '^#' /proc/mounts | awk '{ if ($3 ~ /^ncpfs$/ ) print $2}'` if [ -n "$NFSMTAB" -o -n "$SMBMTAB" -o -n "$NCPMTAB" ] ; then - /etc/init.d/netfs stop + /etc/rc.d/init.d/netfs stop fi fi diff --git a/rc.d/init.d/single b/rc.d/init.d/single index 6806d0c3..7b453a09 100755 --- a/rc.d/init.d/single +++ b/rc.d/init.d/single @@ -10,7 +10,7 @@ # Modified for RHS Linux by Damien Neil # -. /etc/init.d/functions +. /etc/rc.d/init.d/functions # Set the path. PATH=/sbin:/bin:/usr/sbin:/usr/bin |