From face74ef9a63b3341651106a7f7f8f20af15cf5d Mon Sep 17 00:00:00 2001 From: adrian Date: Fri, 16 Mar 2012 13:27:00 +0000 Subject: [PATCH] added my own fail-env for experiment distribution. git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1000 8c4709b5-6ec9-48aa-a5cd-a96041d1645a --- scripts/my-fail-env/ab-fail-env.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 scripts/my-fail-env/ab-fail-env.sh diff --git a/scripts/my-fail-env/ab-fail-env.sh b/scripts/my-fail-env/ab-fail-env.sh new file mode 100755 index 00000000..65a9ae35 --- /dev/null +++ b/scripts/my-fail-env/ab-fail-env.sh @@ -0,0 +1,19 @@ +#!/bin/bash +# +# ab-fail-env.sh (Adrian Böckenkamp) +# default values for several Fail* environment variables +# + +# A whitespace-separated list of hosts to rsync the experiment data to. This +# is not necessarily the same list as FAIL_EXPERIMENT_HOSTS (see below), as +# many hosts may share their homes via NFS. +export FAIL_DISTRIBUTE_HOSTS=${FAIL_DISTRIBUTE_HOSTS:='kos plutonium'} + +# A whitespace-separated list of hosts to run experiments on. If the host name +# is followed by a ':' and a number, this specifies the number of clients to +# run on that host (defaults to #CPUs+1). +export FAIL_EXPERIMENT_HOSTS=${FAIL_EXPERIMENT_HOSTS:="plutonium uran kos:6 bohrium polonium radon $(for hostnr in $(seq 100 254); do echo fiws$hostnr; done)"} + +# A homedir-relative directory on the distribution hosts where all necessary +# Fail* ingredients reside (see multiple-clients.sh). +export FAIL_EXPERIMENT_TARGETDIR=.fail-experiment