]> andersk Git - moira.git/blob - gen/print.sh
redirect output to /var/athena/moira_update.log if it exists, and
[moira.git] / gen / 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/print.out
18 PCLOCAL=/etc/printcap.local
19 PCGEN=/etc/printcap.moira
20 PRINTCAP=/etc/printcap
21
22 # Alert if the tar file or other needed files do not exist
23 test -r $TARFILE || exit $MR_MISSINGFILE
24 test -r $PCLOCAL || exit $MR_MISSINGFILE
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 # Build full printcap and spools
32 cat $PCLOCAL $PCGEN > $PRINTCAP
33 /usr/athena/etc/checkpc -f
34 /usr/athena/etc/lpc reread
35
36 # cleanup
37 test -f $TARFILE && rm -f $TARFILE
38 test -f $0 && rm -f $0
39
40 exit 0
41
This page took 0.053641 seconds and 5 git commands to generate.