diff options
author | Bill Nottingham <notting@redhat.com> | 2002-02-22 23:08:23 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2002-02-22 23:08:23 +0000 |
commit | 9402c8399e37a2a0a0151a9be2c3433c883e78ae (patch) | |
tree | b8326b49a2f0e8d2a2d41fccbfb9fbb3a9dffe3e | |
parent | a5b40529e87db3a5e0ade81eeff1a80536138f26 (diff) | |
download | initscripts-9402c8399e37a2a0a0151a9be2c3433c883e78ae.tar initscripts-9402c8399e37a2a0a0151a9be2c3433c883e78ae.tar.gz initscripts-9402c8399e37a2a0a0151a9be2c3433c883e78ae.tar.bz2 initscripts-9402c8399e37a2a0a0151a9be2c3433c883e78ae.tar.xz initscripts-9402c8399e37a2a0a0151a9be2c3433c883e78ae.zip |
fix bug introduced by fix for #53580 (#60252)
-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 } |