diff options
author | Florian Fainelli <florian@openwrt.org> | 2012-09-19 15:13:44 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2012-09-19 15:13:44 +0000 |
commit | 78f4cf3d70f7646e182fc98ba65b4d9ede0240d3 (patch) | |
tree | f70367e93a85696e423fb7f4318ed72d6cf584c3 /package/base-files/files/etc/init.d/umount | |
parent | 61e96dab3fa9f0aeaf635df10ee1fd245e3c130b (diff) | |
download | upstream-78f4cf3d70f7646e182fc98ba65b4d9ede0240d3.tar.gz upstream-78f4cf3d70f7646e182fc98ba65b4d9ede0240d3.tar.bz2 upstream-78f4cf3d70f7646e182fc98ba65b4d9ede0240d3.zip |
base-files: release an attached loop device on umounting
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
SVN-Revision: 33477
Diffstat (limited to 'package/base-files/files/etc/init.d/umount')
-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..5a750b93c6 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 -d -r } |