]> andersk Git - moira.git/blame - gen/sapprint.sh
Handle nfsgroup bit.
[moira.git] / gen / sapprint.sh
CommitLineData
abb00e7a 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
abb00e7a 10# The following exit codes are defined and MUST BE CONSISTENT with the
11# error codes the library uses:
12MR_MISSINGFILE=47836473
13
14PATH=/bin
c83275d9 15OUTFILE=/var/tmp/sapprint.out.moira
16DSTFILE=/var/tmp/sapprint.out
abb00e7a 17
18# Alert if the output file doesn't exist
19test -r $OUTFILE || exit $MR_MISSINGFILE
20
21# Set the perms usefully
22chown root $OUTFILE
23chgrp 0 $OUTFILE
24chmod 644 $OUTFILE
25
c83275d9 26# mv file into place.
27mv $OUTFILE $DSTFILE
28
abb00e7a 29# cleanup
30test -f $0 && rm -f $0
31
32exit 0
This page took 0.058047 seconds and 5 git commands to generate.