Skip to content
Snippets Groups Projects
common-vars 507 B
Newer Older
cleanup() {
    # kill all processes whose parent is this process
    pkill -P $$
}

for sig in INT QUIT HUP TERM; do
  trap "
    cleanup
    trap - $sig EXIT
    kill -s $sig "'"$$"' "$sig"
done
trap cleanup EXIT

if [ ! -z ${DEBUG} ]; then
    set -x
fi

START=5

if [ ! -z $2 ] ; then
    START=$1
    MAX=$2
elif [ ! -z $1 ] ; then
    START=$1
    MAX=$1
fi

# ETSI VIM ADMIN_DOMAIN=default
APT_PROXY=http://172.21.1.1.3142
aticig's avatar
aticig committed
FLAVOR=osm.sanity
KEY_NAME=hackfest
NETWORK=osm-ext
FOCAL=ubuntu20.04