diff options
author | Roy Marples <roy@marples.name> | 2007-09-25 22:45:57 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-09-25 22:45:57 +0000 |
commit | cc3c5ad11108c357a526845d4231a1e22aa5e8c2 (patch) | |
tree | 80a00bb136a72cc56e41f1bab03c71d040dbe426 /init.d | |
parent | da471b7deba436339bf8b3d9436212b9ef384257 (diff) |
fstabinto now behaves more like mountinfo with respect to --quiet
Diffstat (limited to 'init.d')
-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 3bf2e860..0dfd0047 100755 --- a/init.d/checkroot +++ b/init.d/checkroot @@ -21,7 +21,7 @@ do_mtab() { # Now make sure /etc/mtab have additional info (gid, etc) in there local mnt= mountinfo | while read mnt; do - if fstabinfo --quiet --mountcmd "${mnt}"; then + if fstabinfo --quiet "${mnt}"; then mount -f -o remount "${mnt}" fi done |