summaryrefslogtreecommitdiff
path: root/init.d
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-09-25 22:45:57 +0000
committerRoy Marples <roy@marples.name>2007-09-25 22:45:57 +0000
commitcc3c5ad11108c357a526845d4231a1e22aa5e8c2 (patch)
tree80a00bb136a72cc56e41f1bab03c71d040dbe426 /init.d
parentda471b7deba436339bf8b3d9436212b9ef384257 (diff)
downloadopenrc-cc3c5ad11108c357a526845d4231a1e22aa5e8c2.tar.gz
openrc-cc3c5ad11108c357a526845d4231a1e22aa5e8c2.tar.bz2
openrc-cc3c5ad11108c357a526845d4231a1e22aa5e8c2.tar.xz
fstabinto now behaves more like mountinfo with respect to --quiet
Diffstat (limited to 'init.d')
-rwxr-xr-xinit.d/checkroot2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.d/checkroot b/init.d/checkroot
index 3bf2e86..0dfd004 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