diff options
author | Nicolas Thill <nico@openwrt.org> | 2010-03-01 23:54:45 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2010-03-01 23:54:45 +0000 |
commit | 45f7dc9459491cebf83e05c47d4c0b995fcd6439 (patch) | |
tree | 4ac81a6581daf460cf4b97fa071fc09d7abc2555 /package | |
parent | cbd858715da1a766154d8125373d7e2dc5d4eb95 (diff) | |
download | upstream-45f7dc9459491cebf83e05c47d4c0b995fcd6439.tar.gz upstream-45f7dc9459491cebf83e05c47d4c0b995fcd6439.tar.bz2 upstream-45f7dc9459491cebf83e05c47d4c0b995fcd6439.zip |
firstboot: fix typo (closes: #6738)
SVN-Revision: 19944
Diffstat (limited to 'package')
-rw-r--r-- | package/base-files/files/lib/firstboot/99_10_with_fo_cleanup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/lib/firstboot/99_10_with_fo_cleanup b/package/base-files/files/lib/firstboot/99_10_with_fo_cleanup index 8b00159722..0833954e5b 100644 --- a/package/base-files/files/lib/firstboot/99_10_with_fo_cleanup +++ b/package/base-files/files/lib/firstboot/99_10_with_fo_cleanup @@ -6,7 +6,7 @@ with_fo_cleanup() { # try to get rid of /tmp/root # this will almost always fail - mount /tmp/root 2>&- + umount /tmp/root 2>&- exit 0 } |