From: Harald Hoyer Date: Mon, 23 Jan 2012 10:32:06 +0000 (+0100) Subject: 98usrmount/mount-usr.sh: do not mount /usr read-only X-Git-Tag: 015~53 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1b91369455d2011b7eaa13e0a892d4dc914197c4;p=thirdparty%2Fdracut.git 98usrmount/mount-usr.sh: do not mount /usr read-only https://bugzilla.redhat.com/show_bug.cgi?id=782897 --- diff --git a/modules.d/98usrmount/mount-usr.sh b/modules.d/98usrmount/mount-usr.sh index fc205d57a..b24446ae3 100755 --- a/modules.d/98usrmount/mount-usr.sh +++ b/modules.d/98usrmount/mount-usr.sh @@ -11,7 +11,7 @@ mount_usr() # check, if we have to mount the /usr filesystem while read _dev _mp _fs _opts _rest; do if [ "$_mp" = "/usr" ]; then - echo "$_dev $NEWROOT/$_mp $_fs ${_opts},ro $_rest" + echo "$_dev $NEWROOT/$_mp $_fs ${_opts} $_rest" _usr_found="1" break fi