source: trunk/third/moira/gen/rt.sh @ 23178

Revision 23178, 547 bytes checked in by broder, 16 years ago (diff)
Take a new snapshot from CVS for Moira, and add a debathena-moira-update-server package
  • Property svn:executable set to *
Line 
1#!/bin/sh
2# $Id$
3
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
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
15OUTFILE=/usr/local/rtadmin/work/moira.out
16
17# Alert if the output file doesn't exist
18test -r $OUTFILE || exit $MR_MISSINGFILE
19
20# Set the perms usefully
21chown root $OUTFILE
22chgrp 0 $OUTFILE
23chmod 644 $OUTFILE
24
25# cleanup
26test -f $0 && rm -f $0
27
28exit 0
Note: See TracBrowser for help on using the repository browser.