From 03780d066ae7c78b969e2316dbde85e4ca0fcb85 Mon Sep 17 00:00:00 2001 From: Rajesh Joseph Date: Fri, 31 May 2013 18:17:21 +0530 Subject: nfs: AUTH support for exported sub-directories Problem: NFS allows exporting subdirectories but there is not support for providing AUTH on per directory basis. Fix: Modified nfs.export-dir to include AUTH parameters e.g. nfs.export-dir "/dir1(10.1.1.2),/dir2(10.1.1.0/24|host1) During mount operation NFS will check if the IP from where the connection is made is configured in the AUTH parameter, else the mount operation will fail with EACCES error. Updated admin-guide and volume set help message. Change-Id: I5c6d22edb168b4f46376d1cd6878cd065fc081cc BUG: 968227 Signed-off-by: Rajesh Joseph Reviewed-on: http://review.gluster.org/5124 Tested-by: Gluster Build System Reviewed-by: Vijay Bellur --- tests/nfs.rc | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 tests/nfs.rc (limited to 'tests/nfs.rc') diff --git a/tests/nfs.rc b/tests/nfs.rc new file mode 100644 index 00000000000..f3abee84280 --- /dev/null +++ b/tests/nfs.rc @@ -0,0 +1,21 @@ +#!/bin/bash + + +# Due to portmap registration NFS takes some time to +# export all volumes. Therefore tests should start only +# after exports are visible by showmount command. This +# routine will check if showmount shows the exports or not +# +function is_nfs_export_available () +{ + vol=$1 + + if [ "$vol" == "" ]; then + vol=$V0 + fi + + exp=$(showmount -e 2> /dev/null | grep $vol | wc -l) + echo "$exp" +} + + -- cgit