#!/bin/sh # # Run a regression test script on a remote machine # # called: rtest # # Note: expects remote source to be in the same place # as defined in regress/config on your calling machine # Otherwise, you must define BACULA_SOURCE after the # . ./config . ./config if test $# != 3 ; then echo "Called: rtest " exit 1 fi host=$1 branch=$2 run=$3 ssh ${host} <