aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc/init.d/umount
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2010-02-09 18:07:36 +0000
committerLars-Peter Clausen <lars@metafoo.de>2010-02-09 18:07:36 +0000
commit275b0d8cd4f61e38f938398b2f41928a8519e0be (patch)
tree047f1eab5feb14458aeed0150c2e4c6341dec40a /package/base-files/files/etc/init.d/umount
parentb285f2fc1600d951658b9e7f1a70eb3736babe1a (diff)
downloadupstream-275b0d8cd4f61e38f938398b2f41928a8519e0be.tar.gz
upstream-275b0d8cd4f61e38f938398b2f41928a8519e0be.tar.bz2
upstream-275b0d8cd4f61e38f938398b2f41928a8519e0be.zip
Don't do lazy unmounting of filessystems at reboot/poweroff. It is unneeded and could couse a broken filesystem if unmounting takes to long. Thanks to Peter Wagner
SVN-Revision: 19568
Diffstat (limited to 'package/base-files/files/etc/init.d/umount')
-rwxr-xr-xpackage/base-files/files/etc/init.d/umount2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/etc/init.d/umount b/package/base-files/files/etc/init.d/umount
index d360afed3c..a4e477e2e9 100755
--- a/package/base-files/files/etc/init.d/umount
+++ b/package/base-files/files/etc/init.d/umount
@@ -4,5 +4,5 @@
STOP=99
stop() {
sync
- umount -a -r -l
+ umount -a -r
}