aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>1999-09-20 18:42:10 +0000
committerBill Nottingham <notting@redhat.com>1999-09-20 18:42:10 +0000
commiteff4f33b3db73782716eaccd2eed1af5f7f0fb5d (patch)
tree0aa83ab2ebd3bd5b20f9594715ff94308284f39e
parente76bf80cda0151c2095f81d322f21cb1a9a09b60 (diff)
downloadinitscripts-r4-43.tar
initscripts-r4-43.tar.gz
initscripts-r4-43.tar.bz2
initscripts-r4-43.tar.xz
initscripts-r4-43.zip
just call swapoff oncer4-43
-rwxr-xr-xrc.d/init.d/halt8
1 files changed, 3 insertions, 5 deletions
diff --git a/rc.d/init.d/halt b/rc.d/init.d/halt
index 7efea30b..7c7fbf70 100755
--- a/rc.d/init.d/halt
+++ b/rc.d/init.d/halt
@@ -57,12 +57,10 @@ if [ $? = 0 ]; then
fi
# Turn off swap, then unmount file systems.
-runcmd "Turning off swap and accounting" swapoff -a
-# Turn off other swap that isn't in /etc/fstab
-OTHERSWAP=`awk '! /^Filename/ { print $1 }' /proc/swaps`
-[ -n "$OTHERSWAP" ] && swapoff $OTHERSWAP
+SWAPS=`awk '! /^Filename/ { print $1 }' /proc/swaps`
+[ -n "$SWAPS" ] && runcmd "Turning off swap" swapoff $SWAPS
-[ -x /sbin/accton ] && /sbin/accton
+[ -x /sbin/accton ] && runcmd "Turning off accounting" /sbin/accton
# Unmount file systems, killing processes if we have to.
sig=