Revision 24234,
1.2 KB
checked in by broder, 15 years ago
(diff) |
In moira:
* New CVS snapshot.
|
-
Property svn:executable set to
*
|
Rev | Line | |
---|
[24191] | 1 | #! /bin/sh |
---|
[24234] | 2 | # $Id: cups-cluster.sh,v 1.4 2009-12-17 20:58:52 zacheiss Exp $ |
---|
[24191] | 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/cups-cluster.out |
---|
| 18 | CUPSLOCAL=/etc/cups |
---|
| 19 | |
---|
| 20 | /etc/init.d/cups stop |
---|
| 21 | |
---|
| 22 | # Alert if the tar file or other needed files do not exist |
---|
| 23 | test -r $TARFILE || exit $MR_MISSINGFILE |
---|
| 24 | test -d $CUPSLOCAL || exit $MR_MISSINGFILE |
---|
| 25 | |
---|
[24234] | 26 | /etc/cups/bin/check-disabled.pl 2>/dev/null |
---|
| 27 | |
---|
[24191] | 28 | # Unpack the tar file, getting only files that are newer than the |
---|
| 29 | # on-disk copies (-u). |
---|
| 30 | cd / |
---|
| 31 | tar xf $TARFILE || exit $MR_TARERR |
---|
| 32 | |
---|
[24234] | 33 | /etc/cups/bin/post-dcm-disable.pl 2>/dev/null |
---|
| 34 | |
---|
[24191] | 35 | /etc/init.d/cups start |
---|
| 36 | |
---|
| 37 | /etc/cups/bin/gen-ppd.pl 2>/dev/null |
---|
[24234] | 38 | if [ -s /etc/cups/printers.conf.tmp ]; then |
---|
| 39 | mv /etc/cups/printers.conf.tmp /etc/cups/printers.conf |
---|
| 40 | fi |
---|
[24191] | 41 | |
---|
| 42 | # if Samba-enabled, then restart it too to have it pick up |
---|
| 43 | # new definitions |
---|
| 44 | if [ -x /etc/init.d/smb ]; then |
---|
| 45 | /etc/init.d/smb restart |
---|
| 46 | fi |
---|
| 47 | |
---|
| 48 | if [ $? != 0 ]; then |
---|
| 49 | exit $MR_MKCRED |
---|
| 50 | fi |
---|
| 51 | |
---|
| 52 | # cleanup |
---|
| 53 | test -f $TARFILE && rm -f $TARFILE |
---|
| 54 | test -f $0 && rm -f $0 |
---|
| 55 | |
---|
| 56 | exit 0 |
---|
| 57 | |
---|
Note: See
TracBrowser
for help on using the repository browser.