From 556e03a3c9ad79698c97b27a56387e85f5f4a7b8 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sat, 4 Nov 2006 00:18:49 +0000 Subject: [PATCH] Modified to recognize FreeBSD's setfacl command. --- runtests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtests.sh b/runtests.sh index 005c22a2..3750b039 100755 --- a/runtests.sh +++ b/runtests.sh @@ -182,7 +182,7 @@ else fi # Check if setfacl is around and if it supports the -k or -s option. -if setfacl --help 2>/dev/null | grep ' -k,' >/dev/null; then +if setfacl --help 2>&1 | grep ' -k,\|\[-[a-z]*k' >/dev/null; then setfacl_nodef='setfacl -k' elif setfacl -s u::7,g::5,o:5 testsuite 2>/dev/null; then setfacl_nodef='setfacl -s u::7,g::5,o:5' @@ -221,7 +221,7 @@ prep_scratch() { [ -d "$scratchdir" ] && rm -rf "$scratchdir" mkdir "$scratchdir" # Get rid of default ACLs and dir-setgid to avoid confusing some tests. - $setfacl_nodef "$scratchdir" + $setfacl_nodef "$scratchdir" || true chmod g-s "$scratchdir" return 0 } -- 2.34.1