source: trunk/third/moira/gen/tsm.sh @ 24319

Revision 24319, 697 bytes checked in by broder, 14 years ago (diff)
New Moira snapshot from SVN.
  • Property svn:executable set to *
Line 
1#!/bin/sh
2# $Id: tsm.sh 3956 2010-01-05 20:56:56Z zacheiss $
3
4outfile=/tsm-mit/data/tsmlists
5loadprog=/tsm-mit/bin/loadAdminTable.pl
6
7PATH="/etc:/bin:/usr/bin:/usr/etc:/usr/athena/etc"
8
9if [ -d /var/athena ] && [ -w /var/athena ]; then
10    exec >/var/athena/moira_update.log 2>&1
11else
12    exec >/tmp/moira_update.log 2>&1
13fi
14
15# The following exit codes are defined and MUST BE CONSISTENT with the
16# error codes the library uses:
17MR_MISSINGFILE=47836473
18MR_MKCRED=47836474
19
20if [ ! -f $outfile ]; then
21    exit $MR_MISSINGFILE
22fi
23
24if [ ! -x $loadprog ]; then
25    exit $MR_MISSINGFILE
26fi
27
28$loadprog
29
30# Ignore exit status from $loadprog for now.
31#if [ $? != 0 ]; then
32#    exit $MR_MKCRED
33#fi
34
35exit 0
Note: See TracBrowser for help on using the repository browser.