Revision 23740,
657 bytes
checked in by broder, 16 years ago
(diff) |
In moira:
* New CVS snapshot (Trac: #195)
* Drop patches that have been incorporated upstream.
* Update to build without krb4 on systems that no longer have it.
This doesn't build yet on squeeze, which lacks a krb4 library, but I'm
committing now before I start hacking away at a patch to fix that.
|
Rev | Line | |
---|
[23095] | 1 | #!/bin/sh |
---|
[23740] | 2 | # $Id: warehouse.sh,v 1.5 2007-01-03 20:31:59 zacheiss Exp $ |
---|
[23095] | 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=/warehouse/transfers/moirausr/username_id.map.txt |
---|
| 16 | |
---|
| 17 | # Alert if the output file doesn't exist |
---|
| 18 | test -r $OUTFILE || exit $MR_MISSINGFILE |
---|
| 19 | |
---|
| 20 | # Set the perms usefully |
---|
| 21 | chown root $OUTFILE |
---|
| 22 | chgrp 0 $OUTFILE |
---|
| 23 | chmod 644 $OUTFILE |
---|
| 24 | |
---|
| 25 | # cleanup |
---|
| 26 | test -f $0 && rm -f $0 |
---|
| 27 | |
---|
| 28 | exit 0 |
---|
Note: See
TracBrowser
for help on using the repository browser.