diff options
author | Bill Nottingham <notting@redhat.com> | 2002-01-25 05:45:03 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2002-01-25 05:45:03 +0000 |
commit | fffbc7e47c34c2d32583ca7cd8ec5b869b453dbd (patch) | |
tree | bcbd8728a0c7d9cc8820a688d45823627ca0475e | |
parent | 85a64896201e6518087cdba0528244e7c74900a4 (diff) | |
download | initscripts-fffbc7e47c34c2d32583ca7cd8ec5b869b453dbd.tar initscripts-fffbc7e47c34c2d32583ca7cd8ec5b869b453dbd.tar.gz initscripts-fffbc7e47c34c2d32583ca7cd8ec5b869b453dbd.tar.bz2 initscripts-fffbc7e47c34c2d32583ca7cd8ec5b869b453dbd.tar.xz initscripts-fffbc7e47c34c2d32583ca7cd8ec5b869b453dbd.zip |
fix typo (#55955)
-rwxr-xr-x | rc.d/init.d/halt | 2 |
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` |