source: trunk/third/moira/gen/cups-print.sh @ 23740

Revision 23740, 927 bytes checked in by broder, 16 years ago (diff)
In moira: * New CVS snapshot (Trac: #195) * Drop patches that have been incorporated upstream. * Update to build without krb4 on systems that no longer have it. This doesn't build yet on squeeze, which lacks a krb4 library, but I'm committing now before I start hacking away at a patch to fix that.
  • Property svn:executable set to *
Line 
1#! /bin/sh
2# $Id: cups-print.sh,v 1.2 2008-10-31 20:46:11 zacheiss Exp $
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-print.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# Now, make a stab at the PPD file.
30/etc/cups/bin/gen-ppd.pl
31
32/etc/init.d/cups restart
33if [ $? != 0 ]; then
34    exit $MR_MKCRED
35fi
36
37# cleanup
38test -f $TARFILE && rm -f $TARFILE
39test -f $0 && rm -f $0
40
41exit 0
42
Note: See TracBrowser for help on using the repository browser.