diff options
author | Harald Hoyer <harald@redhat.com> | 2013-01-22 18:11:04 +0100 |
---|---|---|
committer | Harald Hoyer <harald@redhat.com> | 2013-01-23 15:24:27 +0100 |
commit | 8b6bf0ef578caf7cd4c935de389f16268bc0cb97 (patch) | |
tree | af4294c34934182839ec7548a7950c7a10a3ea46 | |
parent | 7bd8f23303ab41b270af5142f4547f496a9f4f38 (diff) | |
download | dracut-8b6bf0ef578caf7cd4c935de389f16268bc0cb97.tar.gz dracut-8b6bf0ef578caf7cd4c935de389f16268bc0cb97.tar.bz2 dracut-8b6bf0ef578caf7cd4c935de389f16268bc0cb97.zip |
romount fix
-rwxr-xr-x | modules.d/95rootfs-block/mount-root.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules.d/95rootfs-block/mount-root.sh b/modules.d/95rootfs-block/mount-root.sh index 0467a559..54d50126 100755 --- a/modules.d/95rootfs-block/mount-root.sh +++ b/modules.d/95rootfs-block/mount-root.sh @@ -28,7 +28,7 @@ mount_root() { _rflags_ro="$rflags,ro" while ! mount -t ${rootfs} -o "$_rflags_ro" "${root#block:}" "$NEWROOT"; do - warn "Failed to mount -t ${rootfs} -o $_rflags_ro ${root#block:} $NEWROOT" + warn "Failed to mount -t ${rootfs} -o ${_rflags_ro##,} ${root#block:} $NEWROOT" fsck_ask_err done |