]> andersk Git - moira.git/blob - gen/letter.sh
changed printer from nil to linus
[moira.git] / gen / letter.sh
1 #!/bin/sh
2 # $Header$
3 # This script prints the letters confirming registration for the extra
4 # kerberos principal.
5
6 # The algorithm consists of first checking to see that the previous 
7 # day's job printed.  If so, the cached copy is deleted.  Otherwise,
8 # today's is appended to yesterday's and we continue working with that.
9
10 PATH=/bin:/bin/athena:/usr/ucb:/usr/bin/athena:/usr/athena; export PATH
11 printer=linus
12 newfile=/tmp/letter.out
13 savefile=/u1/letter.save
14
15 # These are not normally local, so may need to point somewhere else
16 lpquota=lpquota
17 lpr=lpr
18 colrm=colrm
19
20 last=`$lpquota -l | tail -2`
21 if [ "`echo $last | $colrm 1 4 | $colrm 7`" = \
22      "`ls -l $savefile | $colrm 1 32 | $colrm 7`" ]; then
23         mv $newfile $savefile
24 else
25         if [ -s $savefile ]; then
26                 cat $newfile >> $savefile
27                 echo "Reg_extra letter printing error" | /bin/mail dbadmin
28         else
29                 mv $newfile $savefile
30         fi
31 fi
32
33 $lpr -P$printer -h $savefile
34
35 exit 0
This page took 0.306255 seconds and 5 git commands to generate.