diff options
-rwxr-xr-x | init.d/checkroot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init.d/checkroot b/init.d/checkroot index eadb65c9..f7dc16bb 100755 --- a/init.d/checkroot +++ b/init.d/checkroot @@ -17,7 +17,7 @@ do_mtab() { # makes / readonly and dismounts all tmpfs even if in use which is # not good. Luckily, umount uses /etc/mtab instead of /proc/mounts # which allows this hack to work. - grep -v "^[^ ]* / tmpfs" /proc/mounts > /etc/mtab + grep -v "^[^ ]* / tmpfs " /proc/mounts > /etc/mtab # Remove stale backups rm -f /etc/mtab~ /etc/mtab~~ |