Admin/isatest/isatest-settings
author wenzelm
Sat, 24 Mar 2012 12:22:29 +0100
changeset 47103 187cac088582
parent 45908 143d2514347f
child 47213 eb5f812d15e2
permissions -rw-r--r--
more isatest subscribers;

# -*- shell-script -*- :mode=shellscript:
#
# Author: Gerwin Klein, NICTA
#
# DESCRIPTION: common settings for the isatest-* scripts

# source bashrc, we're called by cron
. ~/.bashrc

# canoncical home for all platforms
HOME=/home/isatest

## send email on failure to
MAILTO="\
kleing@cse.unsw.edu.au \
nipkow@in.tum.de \
berghofe@in.tum.de \
lp15@cam.ac.uk \
makarius@sketis.net \
blanchet@in.tum.de \
boehmes@in.tum.de \
bulwahn@in.tum.de \
hoelzl@in.tum.de \
krauss@in.tum.de \
noschinl@in.tum.de \
kuncar@in.tum.de"

LOGPREFIX=$HOME/log
MASTERLOG=$LOGPREFIX/isatest.log
LOGSERVER=macbroy28.informatik.tu-muenchen.de

ERRORDIR=$HOME/var
ERRORLOG=$ERRORDIR/error.log

RUNNING=$HOME/var/running

DISTPREFIX=$HOME/isadist

HOSTNAME="$(hostname -s)"

# this function avoids NFS inconsistencies with multiple writers by
# sshing to one central machine and writing locally. There is stil a
# race condition, but at least it should not corrupt a whole set of entries
# any more.
function log()
{
  MSG="$1"
  TIMESTAMP="$(date)"
  echo "[$TIMESTAMP $HOSTNAME $PRG]: $MSG" | ssh $LOGSERVER "cat >> $MASTERLOG"
}