aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2002-01-25 05:45:03 +0000
committerBill Nottingham <notting@redhat.com>2002-01-25 05:45:03 +0000
commitfffbc7e47c34c2d32583ca7cd8ec5b869b453dbd (patch)
treebcbd8728a0c7d9cc8820a688d45823627ca0475e
parent85a64896201e6518087cdba0528244e7c74900a4 (diff)
downloadinitscripts-fffbc7e47c34c2d32583ca7cd8ec5b869b453dbd.tar
initscripts-fffbc7e47c34c2d32583ca7cd8ec5b869b453dbd.tar.gz
initscripts-fffbc7e47c34c2d32583ca7cd8ec5b869b453dbd.tar.bz2
initscripts-fffbc7e47c34c2d32583ca7cd8ec5b869b453dbd.tar.xz
initscripts-fffbc7e47c34c2d32583ca7cd8ec5b869b453dbd.zip
fix typo (#55955)
-rwxr-xr-xrc.d/init.d/halt2
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/init.d/halt b/rc.d/init.d/halt
index 05f179dc..14eadb7c 100755
--- a/rc.d/init.d/halt
+++ b/rc.d/init.d/halt
@@ -141,7 +141,7 @@ devremaining=`awk '!/^#/ && $1 ~ /^\/dev\/loop/ && $2 != "/" {print $1}' /proc/m
fi
for dev in $devremaining ; do
losetup $dev > /dev/null 2>&1 && \
- runcmd $"Detaching loopback device $dev: " losetup -d $device
+ runcmd $"Detaching loopback device $dev: " losetup -d $dev
done
remaining=`awk '!/^#/ && $1 ~ /^\/dev\/loop/ && $2 != "/" {print $2}' /proc/mounts`
devremaining=`awk '!/^#/ && $1 ~ /^\/dev\/loop/ && $2 != "/" {print $1}' /proc/mounts`