diff options
-rwxr-xr-x | network | 4 | ||||
-rw-r--r-- | rc.conf | 2 | ||||
-rwxr-xr-x | rc.shutdown | 4 | ||||
-rwxr-xr-x | rc.single | 4 |
4 files changed, 7 insertions, 7 deletions
@@ -20,7 +20,7 @@ ifup() wvarname="\$wlan_${1}" eval wif_line=$wvarname /usr/sbin/iwconfig $wif_line - /usr/bin/sleep 2 + /bin/sleep 2 fi done varname="\$${1}" @@ -157,7 +157,7 @@ case "$1" in ;; restart) $0 stop - /usr/bin/sleep 2 + /bin/sleep 2 $0 start ;; ifup|ifdown|iflist|rtup|rtdown|rtlist) @@ -8,7 +8,7 @@ # HARDWARECLOCK: set to "UTC" or "localtime" # TIMEZONE: timezones are found in /usr/share/zoneinfo # KEYMAP: keymaps are found in /usr/share/kbd/keymaps -# CONSOLEFONT: fount in /usr/share/kbd/consolefonts (only needed for non-us) +# CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-us) # USECOLOR: use ANSI color sequences in startup messages # HARDWARECLOCK="localtime" diff --git a/rc.shutdown b/rc.shutdown index 8e5a0e9..98316d2 100755 --- a/rc.shutdown +++ b/rc.shutdown @@ -33,12 +33,12 @@ fi # Terminate all processes stat_busy "Sending SIGTERM To Processes" /sbin/killall5 -15 &> /dev/null -/usr/bin/sleep 5 +/bin/sleep 5 stat_done stat_busy "Sending SIGKILL To Processes" /sbin/killall5 -9 &> /dev/null -/usr/bin/sleep 1 +/bin/sleep 1 stat_done stat_busy "Saving Random Seed" @@ -26,12 +26,12 @@ fi if [ "$PREVLEVEL" != "N" ]; then stat_busy "Sending SIGTERM To Processes" /sbin/killall5 -15 &> /dev/null - /usr/bin/sleep 5 + /bin/sleep 5 stat_done stat_busy "Sending SIGKILL To Processes" /sbin/killall5 -9 - /usr/bin/sleep 1 + /bin/sleep 1 stat_done if [ -e /dev/.devfsd -a -x /sbin/devfsd ]; then |