diff options
Diffstat (limited to 'init.d')
-rw-r--r-- | init.d/mtab.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init.d/mtab.in b/init.d/mtab.in index 0be5adbc..a32b8d60 100644 --- a/init.d/mtab.in +++ b/init.d/mtab.in @@ -28,7 +28,7 @@ start() # 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~~ |