From b6f67e628556917a58ac2ef603d38a9266377d4e Mon Sep 17 00:00:00 2001 From: zacheiss Date: Thu, 12 Mar 2009 21:17:25 +0000 Subject: [PATCH] chmod/chown file. --- gen/confluence.sh | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 gen/confluence.sh diff --git a/gen/confluence.sh b/gen/confluence.sh new file mode 100755 index 00000000..010e4824 --- /dev/null +++ b/gen/confluence.sh @@ -0,0 +1,27 @@ +#!/bin/sh +# $Id$ + +if [ -d /var/athena ] && [ -w /var/athena ]; then + exec >/var/athena/moira_update.log 2>&1 +else + exec >/tmp/moira_update.log 2>&1 +fi + +# The following exit codes are defined and MUST BE CONSISTENT with the +# error codes the library uses: +MR_MISSINGFILE=47836473 + +PATH="/etc:/bin:/usr/bin:/usr/etc:/usr/athena/etc" +OUTFILE=/var/local/moira-feed/groups + +# Alert if the output file doesn't exist +test -r $OUTFILE || exit $MR_MISSINGFILE + +# Set the perms usefully +chgrp www $OUTFILE +chmod g+r $OUTFILE + +# cleanup +test -f $0 && rm -f $0 + +exit 0 -- 2.45.1