Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions xlators/mount/fuse/utils/mount.glusterfs.in
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,10 @@ start_glusterfs ()
cmd_line=$(echo "$cmd_line --direct-io-mode=$direct_io_mode");
fi

if [ -n "$secure_mgmt" ]; then
cmd_line=$(echo "$cmd_line --secure-mgmt=$secure_mgmt");
fi

if [ -n "$use_readdirp" ]; then
cmd_line=$(echo "$cmd_line --use-readdirp=$use_readdirp");
fi
Expand Down Expand Up @@ -534,6 +538,9 @@ with_options()
"direct-io-mode")
direct_io_mode=$value
;;
"secure-mgmt")
secure_mgmt=$value
;;
"volume-name")
volume_name=$value
;;
Expand Down
7 changes: 7 additions & 0 deletions xlators/mount/fuse/utils/mount_glusterfs.in
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,10 @@ start_glusterfs ()
cmd_line=$(echo "$cmd_line --direct-io-mode=$direct_io_mode");
fi

if [ -n "$secure_mgmt" ]; then
cmd_line=$(echo "$cmd_line --secure-mgmt=$secure_mgmt");
fi

if [ -n "$mac_compat" ]; then
cmd_line=$(echo "$cmd_line --mac-compat=$mac_compat");
fi
Expand Down Expand Up @@ -352,6 +356,9 @@ with_options()
"direct-io-mode")
direct_io_mode=$value
;;
"secure-mgmt")
secure_mgmt=$value
;;
"mac-compat")
mac_compat=$value
;;
Expand Down