]> andersk Git - moira.git/blob - gen/cups-print.sh
Goo for persistently disabling queues.
[moira.git] / gen / cups-print.sh
1 #! /bin/sh
2 # $Id$
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 /etc/cups/bin/check-disabled.pl 2>/dev/null
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 /etc/cups/bin/post-dcm-disable.pl 2>/dev/null
32 if [ -s /etc/cups/printers.conf.tmp ]; then
33     mv /etc/cups/printers.conf.tmp /etc/cups/printers.conf
34 fi
35
36 # Now, make a stab at the PPD file.
37 /etc/cups/bin/gen-ppd.pl
38
39 /etc/init.d/cups stop
40 /etc/init.d/cups start
41
42 if [ $? != 0 ]; then
43     exit $MR_MKCRED
44 fi
45
46 # if Samba-enabled, then restart it too to have it pick up
47 # new definitions
48 if [ -x /etc/init.d/smb ]; then
49        /etc/init.d/smb restart
50 fi
51
52 # cleanup
53 test -f $TARFILE && rm -f $TARFILE
54 test -f $0 && rm -f $0
55
56 exit 0
57
This page took 0.041808 seconds and 5 git commands to generate.