diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-01-30 18:17:57 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-01-30 18:17:57 +0000 |
commit | 10ec4fa29292da999bf9c1fe92598cd51c09c619 (patch) | |
tree | e094f976f85204400de4717360f533b9bb868cef /package/base-files/files | |
parent | 541725ce1897acbd543d1e82e2b1b2728a8f6856 (diff) | |
download | upstream-10ec4fa29292da999bf9c1fe92598cd51c09c619.tar.gz upstream-10ec4fa29292da999bf9c1fe92598cd51c09c619.tar.bz2 upstream-10ec4fa29292da999bf9c1fe92598cd51c09c619.zip |
when rebooting, use lazy umounts as fallback (patch by puchu)
SVN-Revision: 19429
Diffstat (limited to 'package/base-files/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 a4e477e2e9..d360afed3c 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 + umount -a -r -l } |