From 8f14d85777c93277403bcac727c0447dcba3cdc0 Mon Sep 17 00:00:00 2001 From: Anand Avati Date: Fri, 1 Jul 2011 17:19:39 +0000 Subject: mount.glusterfs: support -o acl parameter Signed-off-by: Anand Avati BUG: 2815 (Server-enforced ACLs) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2815 --- xlators/mount/fuse/utils/mount.glusterfs.in | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'xlators/mount/fuse') diff --git a/xlators/mount/fuse/utils/mount.glusterfs.in b/xlators/mount/fuse/utils/mount.glusterfs.in index e429eca16..6b683dc91 100755 --- a/xlators/mount/fuse/utils/mount.glusterfs.in +++ b/xlators/mount/fuse/utils/mount.glusterfs.in @@ -73,6 +73,10 @@ start_glusterfs () cmd_line=$(echo "$cmd_line --read-only"); fi + if [ -n "$acl" ]; then + cmd_line=$(echo "$cmd_line --acl"); + fi + if [ -n "$log_file" ]; then cmd_line=$(echo "$cmd_line --log-file=$log_file"); fi @@ -169,6 +173,8 @@ main () read_only=$(echo "$options" | sed -n 's/.*\(ro\)[^,]*.*/\1/p'); + acl=$(echo "$options" | sed -n 's/.*\(acl\)[^,]*.*/\1/p'); + transport=$(echo "$options" | sed -n 's/.*transport=\([^,]*\).*/\1/p'); direct_io_mode=$(echo "$options" | sed -n 's/.*direct-io-mode=\([^,]*\).*/\1/p'); @@ -208,6 +214,7 @@ main () -e 's/[,]*volume-id=[^,]*//' \ -e 's/[,]*log-server=[^,]*//' \ -e 's/[,]*ro[^,]*//' \ + -e 's/[,]*acl[^,]*//' \ -e 's/[,]*log-server-port=[^,]*//'); # -- cgit