From f773b666d9163013f219354db017067f52773b51 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 8 Sep 2011 01:58:53 +0200 Subject: [PATCH] busybox: unmount various filesystems on reboot/poweroff Signed-off-by: Stephan Raue --- packages/sysutils/busybox/init.d/01_mount-filesystem | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/sysutils/busybox/init.d/01_mount-filesystem b/packages/sysutils/busybox/init.d/01_mount-filesystem index 09d84f7fdc..fa1c4e8c09 100644 --- a/packages/sysutils/busybox/init.d/01_mount-filesystem +++ b/packages/sysutils/busybox/init.d/01_mount-filesystem @@ -29,5 +29,7 @@ case $RUNLEVEL in mount -n -t ramfs none /var ;; poweroff|reboot) + progress "unmounting filesystems" + umount /var ;; esac