From dafab9fd5e4afe0f1cdd8d2e3ce7b4037faf4830 Mon Sep 17 00:00:00 2001 From: MPLX Date: Thu, 18 Jul 2019 12:13:09 +0530 Subject: extras/mount-shared-storage.sh: consider options to mount If different mount options are given to glusterfs in /etc/fstab, it was not considered in the script. Fixes: bz#1690454 Change-Id: If829b3d6ab79755647626edcb31f38a3716989db Signed-off-by: Amar Tumballi --- extras/mount-shared-storage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'extras') diff --git a/extras/mount-shared-storage.sh b/extras/mount-shared-storage.sh index e99233f7e1e..cc40e13c3e3 100755 --- a/extras/mount-shared-storage.sh +++ b/extras/mount-shared-storage.sh @@ -21,7 +21,7 @@ do continue fi - mount -t glusterfs "${arr[0]}" "${arr[1]}" + mount -t glusterfs -o "${arr[3]}" "${arr[0]}" "${arr[1]}" #wait for few seconds sleep 10 -- cgit