Revision 23740,
1.0 KB
checked in by broder, 15 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.
|
-
Property svn:executable set to
*
|
Rev | Line | |
---|
[23095] | 1 | #! /bin/sh |
---|
[23740] | 2 | # $Id: print.sh,v 1.5 2002-02-23 03:53:49 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 | MR_MKCRED=47836474 |
---|
| 14 | MR_TARERR=47836476 |
---|
| 15 | |
---|
| 16 | PATH=/bin |
---|
| 17 | TARFILE=/var/tmp/print.out |
---|
| 18 | PCLOCAL=/etc/printcap.local |
---|
| 19 | PCGEN=/etc/printcap.moira |
---|
| 20 | PRINTCAP=/etc/printcap |
---|
| 21 | |
---|
| 22 | # Alert if the tar file or other needed files do not exist |
---|
| 23 | test -r $TARFILE || exit $MR_MISSINGFILE |
---|
| 24 | test -r $PCLOCAL || exit $MR_MISSINGFILE |
---|
| 25 | |
---|
| 26 | # Unpack the tar file, getting only files that are newer than the |
---|
| 27 | # on-disk copies (-u). |
---|
| 28 | cd / |
---|
| 29 | tar xf $TARFILE || exit $MR_TARERR |
---|
| 30 | |
---|
| 31 | # Build full printcap and spools |
---|
| 32 | cat $PCLOCAL $PCGEN > $PRINTCAP |
---|
| 33 | /usr/athena/etc/checkpc -f |
---|
| 34 | if [ $? != 0 ]; then |
---|
| 35 | exit $MR_MKCRED |
---|
| 36 | fi |
---|
| 37 | /usr/athena/etc/lpc reread |
---|
| 38 | if [ $? != 0 ]; then |
---|
| 39 | exit $MR_MKCRED |
---|
| 40 | fi |
---|
| 41 | |
---|
| 42 | # cleanup |
---|
| 43 | test -f $TARFILE && rm -f $TARFILE |
---|
| 44 | test -f $0 && rm -f $0 |
---|
| 45 | |
---|
| 46 | exit 0 |
---|
| 47 | |
---|
Note: See
TracBrowser
for help on using the repository browser.