berth/tools/gate/setup.sh
Chris Wedgwood 92a678bb5c Use overrides (values) to describe VMs
Previously the VM configuration was embedded in the charts templates;
this change moves things into values as we iterate over things created
resources as required.

Change-Id: I75e60bd31ee5debda90a703775215e92480d572c
2017-10-30 20:37:43 +00:00

14 lines
184 B
Bash
Executable File

#!/bin/sh
set -ex
. /etc/os-release
type=${ID_LIKE:=ID}
if [ "$type" == "debian" ] ; then
apt-get update
apt-get install netcat-openbsd jq
else
yum install netcat jq
fi