1. Option to disable or enable acl with nfs.acl boolean option. 2. Deregister the acl service with the portmapper service when no longer required. Change-Id: I6562b6b40138d040aa2bf1e5641f4c0e0e9f9d09 BUG: 970070 Signed-off-by: Rajesh Amaravathi <rajesh@redhat.com> Reviewed-on: http://review.gluster.org/5136 Reviewed-by: Rajesh Joseph <rjoseph@redhat.com> Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Anand Avati <avati@redhat.com>
15 lines
268 B
Bash
Executable File
15 lines
268 B
Bash
Executable File
#!/bin/bash
|
|
# TEST the nfs.acl option
|
|
. $(dirname $0)/../include.rc
|
|
|
|
cleanup
|
|
TEST glusterd
|
|
TEST pidof glusterd
|
|
|
|
TEST $CLI volume create $V0 $H0:$B0/$V0
|
|
TEST $CLI volume start $V0
|
|
sleep 5
|
|
TEST $CLI volume set $V0 nfs.acl off
|
|
TEST $CLI volume set $V0 nfs.acl on
|
|
cleanup
|