aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2010-01-30 18:17:57 +0000
committerFelix Fietkau <nbd@openwrt.org>2010-01-30 18:17:57 +0000
commit10ec4fa29292da999bf9c1fe92598cd51c09c619 (patch)
treee094f976f85204400de4717360f533b9bb868cef
parent541725ce1897acbd543d1e82e2b1b2728a8f6856 (diff)
downloadupstream-10ec4fa29292da999bf9c1fe92598cd51c09c619.tar.gz
upstream-10ec4fa29292da999bf9c1fe92598cd51c09c619.tar.bz2
upstream-10ec4fa29292da999bf9c1fe92598cd51c09c619.zip
when rebooting, use lazy umounts as fallback (patch by puchu)
SVN-Revision: 19429
-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 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
}