diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2017-06-26 16:28:19 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2017-06-26 16:28:19 +0000 |
commit | 4584c156c22e3f7f0045f182888e3154563def1d (patch) | |
tree | 33f2d3ccb589f5487bf035d25f00770e85831647 /bootscripts | |
parent | d414cb0c9948853cac331472ca80bb3f0ecc147f (diff) |
Use correct switch in mountfs script
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11262 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'bootscripts')
-rw-r--r-- | bootscripts/lfs/init.d/mountfs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootscripts/lfs/init.d/mountfs b/bootscripts/lfs/init.d/mountfs index 3e3139bed..2509f30de 100644 --- a/bootscripts/lfs/init.d/mountfs +++ b/bootscripts/lfs/init.d/mountfs @@ -59,7 +59,7 @@ case "${1}" in evaluate_retval # Make sure / is mounted read only (umount bug) - mount --test-opts remount,ro / + mount --options remount,ro / # Make all LVM volume groups unavailable, if appropriate # This fails if swap or / are on an LVM partition |