diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2010-02-09 18:07:36 +0000 |
---|---|---|
committer | Lars-Peter Clausen <lars@metafoo.de> | 2010-02-09 18:07:36 +0000 |
commit | 275b0d8cd4f61e38f938398b2f41928a8519e0be (patch) | |
tree | 047f1eab5feb14458aeed0150c2e4c6341dec40a /package/base-files | |
parent | b285f2fc1600d951658b9e7f1a70eb3736babe1a (diff) | |
download | upstream-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')
-rwxr-xr-x | package/base-files/files/etc/init.d/umount | 2 |
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 } |