diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-09-26 18:58:52 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-09-26 18:58:52 +0200 |
commit | 036e5cf9f0578e108a4ac0192f17f21eb136a964 (patch) | |
tree | a428183b4dc7396416478daf24a91054f724a379 /package/base-files/src | |
parent | b2a670265e17179e15298b1a3bddf382b0ebff64 (diff) | |
parent | 7549f0375bf091445893d9b9b15de5baf7da82ee (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/base-files/src')
-rwxr-xr-x | package/base-files/src/etc/init.d/umount | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/src/etc/init.d/umount b/package/base-files/src/etc/init.d/umount index bcd545999..49bd5a020 100755 --- a/package/base-files/src/etc/init.d/umount +++ b/package/base-files/src/etc/init.d/umount @@ -5,7 +5,7 @@ case $1 in autostop) cd / sync - for i in $(grep -v ^# /etc/fstab 2>/dev/null|awk '{ print $2 }');do + for i in $(grep -v ^# /etc/fstab 2>/dev/null|awk '{ print $2 }'|grep -v none);do umount $i 2>/dev/null done ;; |