]> andersk Git - moira.git/blame - gen/cups-cluster.sh
Make sure disabled queues stay disabled.
[moira.git] / gen / cups-cluster.sh
CommitLineData
cfba011a 1#! /bin/sh
2# $Id$
3
4if [ -d /var/athena ] && [ -w /var/athena ]; then
5 exec >/var/athena/moira_update.log 2>&1
6else
7 exec >/tmp/moira_update.log 2>&1
8fi
9
10# The following exit codes are defined and MUST BE CONSISTENT with the
11# error codes the library uses:
12MR_MISSINGFILE=47836473
13MR_MKCRED=47836474
14MR_TARERR=47836476
15
16PATH=/bin
17TARFILE=/var/tmp/cups-cluster.out
18CUPSLOCAL=/etc/cups
19
30de46f6 20/etc/init.d/cups stop
21
cfba011a 22# Alert if the tar file or other needed files do not exist
23test -r $TARFILE || exit $MR_MISSINGFILE
24test -d $CUPSLOCAL || exit $MR_MISSINGFILE
25
2d9de075 26/etc/cups/bin/check-disabled.pl 2>/dev/null
27
cfba011a 28# Unpack the tar file, getting only files that are newer than the
29# on-disk copies (-u).
30cd /
31tar xf $TARFILE || exit $MR_TARERR
32
2d9de075 33/etc/cups/bin/post-dcm-disable.pl 2>/dev/null
34
cfba011a 35/etc/init.d/cups start
36
30de46f6 37/etc/cups/bin/gen-ppd.pl 2>/dev/null
38
cfba011a 39# if Samba-enabled, then restart it too to have it pick up
40# new definitions
41if [ -x /etc/init.d/smb ]; then
42 /etc/init.d/smb restart
43fi
44
45if [ $? != 0 ]; then
46 exit $MR_MKCRED
47fi
48
49# cleanup
50test -f $TARFILE && rm -f $TARFILE
51test -f $0 && rm -f $0
52
53exit 0
54
This page took 0.057668 seconds and 5 git commands to generate.