]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
98usrmount/mount-usr.sh: do not mount /usr read-only
authorHarald Hoyer <harald@redhat.com>
Mon, 23 Jan 2012 10:32:06 +0000 (11:32 +0100)
committerHarald Hoyer <harald@redhat.com>
Mon, 23 Jan 2012 10:32:29 +0000 (11:32 +0100)
https://bugzilla.redhat.com/show_bug.cgi?id=782897

modules.d/98usrmount/mount-usr.sh

index fc205d57a05d50cd7e6436c7f8b1983ab8ec66c1..b24446ae3b78687938f296a57032f2ed67040b55 100755 (executable)
@@ -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