]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
Support spaces in mount_nfs (#1109933)
authorBrian C. Lane <bcl@redhat.com>
Thu, 21 Aug 2014 18:31:51 +0000 (11:31 -0700)
committerHarald Hoyer <harald@redhat.com>
Wed, 10 Sep 2014 09:09:07 +0000 (11:09 +0200)
nfs paths may contain spaces, make sure they are preserved when passed
to nfs_to_var and mount.

Related: rhbz#1109933
(cherry picked from commit 7e692cfd43ac7f70dd58a0b083f33d6e80d3908c)

modules.d/95nfs/nfs-lib.sh

index 9ced2e69f927e8fe83ffd18a4fe95f4cb479f8df..bf7d044b58fb539d2a089f1c2c14bbe283251c56 100755 (executable)
@@ -125,7 +125,7 @@ munge_nfs_options() {
 mount_nfs() {
     local nfsroot="$1" mntdir="$2" netif="$3"
     local nfs="" server="" path="" options=""
-    nfs_to_var $nfsroot $netif
+    nfs_to_var "$nfsroot" $netif
     munge_nfs_options
     if [ "$nfs" = "nfs4" ]; then
         options=$options${nfslock:+,$nfslock}
@@ -136,5 +136,5 @@ mount_nfs() {
             && warn "Locks unsupported on NFSv{2,3}, using nolock" 1>&2
         options=$options,nolock
     fi
-    mount -t $nfs -o$options $server:$path $mntdir
+    mount -t $nfs -o$options "$server:$path" "$mntdir"
 }