]> andersk Git - moira.git/blame - gen/cups-cluster.sh
Alas, LDAP.
[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
20# Alert if the tar file or other needed files do not exist
21test -r $TARFILE || exit $MR_MISSINGFILE
22test -d $CUPSLOCAL || exit $MR_MISSINGFILE
23
24# Unpack the tar file, getting only files that are newer than the
25# on-disk copies (-u).
26cd /
27tar xf $TARFILE || exit $MR_TARERR
28
29/etc/cups/bin/sync_lpd_ldap.pl 2>/dev/null
30/etc/cups/bin/gen-ppd.pl 2>/dev/null
31
32/etc/init.d/cups stop
33/etc/init.d/cups start
34
35# if Samba-enabled, then restart it too to have it pick up
36# new definitions
37if [ -x /etc/init.d/smb ]; then
38 /etc/init.d/smb restart
39fi
40
41if [ $? != 0 ]; then
42 exit $MR_MKCRED
43fi
44
45# cleanup
46test -f $TARFILE && rm -f $TARFILE
47test -f $0 && rm -f $0
48
49exit 0
50
This page took 0.096984 seconds and 5 git commands to generate.