]> andersk Git - moira.git/blob - gen/boot.sh
Command line printer manipulation client, and build goo.
[moira.git] / gen / boot.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=/usr/bin
17 TARFILE=/var/tmp/boot.out
18 BOOTGEN=/var/boot/bootptab.print
19 BOOTLOCAL=/var/boot/bootptab.local
20 BOOTFILE=/var/boot/bootptab
21 PSWDFILE=/var/boot/hp.add
22
23 # Alert if the tar file or other needed files do not exist
24 test -r $TARFILE || exit $MR_MISSINGFILE
25 test -r $BOOTLOCAL || exit $MR_MISSINGFILE
26 test -r $PSWDFILE || exit $MR_MISSINGFILE
27
28 cd /
29 tar xf $TARFILE || exit $MR_TARERR
30
31 # Append passwords, etc., to the new files
32 for f in `find /var/boot/hp -name \*.new -print`; do
33     cat $PSWDFILE >> $f
34     mv $f /var/boot/hp/`basename $f .new`
35 done
36
37 # Build full bootptab
38 cat $BOOTLOCAL $BOOTGEN > $BOOTFILE
39
40 # cleanup
41 test -f $TARFILE && rm -f $TARFILE
42 test -f $0 && rm -f $0
43
44 exit 0
This page took 2.429345 seconds and 5 git commands to generate.