Revision 24319,
615 bytes
checked in by broder, 15 years ago
(diff) |
New Moira snapshot from SVN.
|
-
Property svn:executable set to
*
|
Rev | Line | |
---|
[23740] | 1 | #!/bin/sh |
---|
[24319] | 2 | # $Id: confluence.sh 3956 2010-01-05 20:56:56Z zacheiss $ |
---|
[23740] | 3 | |
---|
| 4 | if [ -d /var/athena ] && [ -w /var/athena ]; then |
---|
| 5 | exec >/var/athena/moira_update.log 2>&1 |
---|
| 6 | else |
---|
| 7 | exec >/tmp/moira_update.log 2>&1 |
---|
| 8 | fi |
---|
| 9 | |
---|
| 10 | # The following exit codes are defined and MUST BE CONSISTENT with the |
---|
| 11 | # error codes the library uses: |
---|
| 12 | MR_MISSINGFILE=47836473 |
---|
| 13 | |
---|
| 14 | PATH="/etc:/bin:/usr/bin:/usr/etc:/usr/athena/etc" |
---|
| 15 | OUTFILE=/var/local/moira-feed/groups |
---|
| 16 | |
---|
| 17 | # Alert if the output file doesn't exist |
---|
| 18 | test -r $OUTFILE || exit $MR_MISSINGFILE |
---|
| 19 | |
---|
| 20 | # Set the perms usefully |
---|
| 21 | chgrp www $OUTFILE |
---|
| 22 | chmod g+r $OUTFILE |
---|
| 23 | |
---|
| 24 | # cleanup |
---|
| 25 | test -f $0 && rm -f $0 |
---|
| 26 | |
---|
| 27 | exit 0 |
---|
Note: See
TracBrowser
for help on using the repository browser.