Revision 23932,
1.0 KB
checked in by broder, 15 years ago
(diff) |
In moira:
* New CVS snapshot.
|
-
Property svn:executable set to
*
|
Line | |
---|
1 | #! /bin/sh |
---|
2 | # $Id: cups-print.sh,v 1.3 2009-07-01 16:28:43 zacheiss Exp $ |
---|
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-print.out |
---|
18 | CUPSLOCAL=/etc/cups |
---|
19 | |
---|
20 | # Alert if the tar file or other needed files do not exist |
---|
21 | test -r $TARFILE || exit $MR_MISSINGFILE |
---|
22 | test -d $CUPSLOCAL || exit $MR_MISSINGFILE |
---|
23 | |
---|
24 | # Unpack the tar file, getting only files that are newer than the |
---|
25 | # on-disk copies (-u). |
---|
26 | cd / |
---|
27 | tar xf $TARFILE || exit $MR_TARERR |
---|
28 | |
---|
29 | # Now, make a stab at the PPD file. |
---|
30 | /etc/cups/bin/gen-ppd.pl |
---|
31 | |
---|
32 | /etc/init.d/cups restart |
---|
33 | |
---|
34 | if [ $? != 0 ]; then |
---|
35 | exit $MR_MKCRED |
---|
36 | fi |
---|
37 | |
---|
38 | # if Samba-enabled, then restart it too to have it pick up |
---|
39 | # new definitions |
---|
40 | if [ -x /etc/init.d/smb ]; then |
---|
41 | /etc/init.d/smb restart |
---|
42 | fi |
---|
43 | |
---|
44 | # cleanup |
---|
45 | test -f $TARFILE && rm -f $TARFILE |
---|
46 | test -f $0 && rm -f $0 |
---|
47 | |
---|
48 | exit 0 |
---|
49 | |
---|
Note: See
TracBrowser
for help on using the repository browser.