From 03bfe164c8be467ed34cb650e4ac22708570f3aa Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 14 Aug 2002 02:01:23 +0000 Subject: fix tmpfs umounts (#68178, ) --- rc.d/init.d/halt | 1 + 1 file changed, 1 insertion(+) (limited to 'rc.d/init.d/halt') diff --git a/rc.d/init.d/halt b/rc.d/init.d/halt index a9732185..9c27a847 100755 --- a/rc.d/init.d/halt +++ b/rc.d/init.d/halt @@ -25,6 +25,7 @@ runcmd() { halt_get_remaining() { awk '!/(^#|proc|loopfs|autofs|devfs|^none|^\/dev\/root| \/ )/ {print $2}' /proc/mounts awk '{ if ($3 ~ /^proc$/ && $2 !~ /^\/proc/) print $2; }' /proc/mounts + awk '{ if ($3 ~ /^tmpfs$/ && $2 !~ /^\/dev/) print $2; }' /proc/mounts } # See how we were called. -- cgit v1.2.1