diff options
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 |