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