]> andersk Git - moira.git/commitdiff
Add an alternate possible location of postacldcm (in /usr/local/sbin)
authorzacheiss <zacheiss>
Wed, 28 Dec 2005 21:42:14 +0000 (21:42 +0000)
committerzacheiss <zacheiss>
Wed, 28 Dec 2005 21:42:14 +0000 (21:42 +0000)
for non-Athena machines that might be receiving DCMs.

gen/acl.sh

index f1c154a247ce3eebcbb9b88becfe13d93b790327..81e73d552ca8bd0a15b1d8e1439614861d8beeb4 100755 (executable)
@@ -91,6 +91,11 @@ if [ -x /etc/athena/postacldcm ]; then
     if [ $? != 0 ]; then
        exit $MR_NOCRED
     fi
+elif [ -x /usr/local/sbin/postacldcm ]; then
+    /usr/local/sbin/postacldcm >/dev/null 2>&1
+    if [ $? != 0 ]; then
+       exit $MR_NOCRED
+    fi
 fi
 
 # cleanup
This page took 0.043228 seconds and 5 git commands to generate.