#! /bin/csh
#
# Example usage: killnightly solaris
#
#
set dir=`dirname $0`
set day=`date | cut -f1 -d" "`

foreach TEST ($*)
  source $dir/confignightly/default
  source $dir/confignightly/${TNAME}

  $SSH $USR@$MACH $DASHN "$LOC/bin/maint/zapall" &
  sleep 60 # If 2 invocations on the same machine - they stomp in each other
end
wait

