diff options
author | Bill Nottingham <notting@redhat.com> | 2002-02-22 23:08:52 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2002-02-22 23:08:52 +0000 |
commit | d5004f78293d5e5de4510016d750ab0a0ba4f2a4 (patch) | |
tree | 2b341dc920a14904cf20b8cd6001c6511aa6b3ba /rc.d/init.d | |
parent | 7d5a204d499280288d5261a0efe57c5db0433ce9 (diff) | |
download | initscripts-d5004f78293d5e5de4510016d750ab0a0ba4f2a4.tar initscripts-d5004f78293d5e5de4510016d750ab0a0ba4f2a4.tar.gz initscripts-d5004f78293d5e5de4510016d750ab0a0ba4f2a4.tar.bz2 initscripts-d5004f78293d5e5de4510016d750ab0a0ba4f2a4.tar.xz initscripts-d5004f78293d5e5de4510016d750ab0a0ba4f2a4.zip |
fix bug introduced by fix for #53580 (#60252)
Diffstat (limited to 'rc.d/init.d')
-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 14eadb7c..97dc4b78 100755 --- a/rc.d/init.d/halt +++ b/rc.d/init.d/halt @@ -26,7 +26,7 @@ runcmd() { } halt_get_remaining() { - awk '!/(^#|proc|loopfs|autofs|dev|^none|^\/dev\/root| \/ )/ {print $2}' /proc/mounts + awk '!/(^#|proc|loopfs|autofs|devfs|^none|^\/dev\/root| \/ )/ {print $2}' /proc/mounts awk '{ if ($3 ~ /^proc$/ && $2 !~ /^\/proc/) print $2; }' /proc/mounts } |