From: Lars-Peter Clausen Date: Tue, 9 Feb 2010 18:07:36 +0000 (+0000) Subject: Don't do lazy unmounting of filessystems at reboot/poweroff. It is unneeded and could... X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=275b0d8cd4f61e38f938398b2f41928a8519e0be;p=openwrt%2Fstaging%2Fnbd.git 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 --- 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 }