92a678bb5c
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
14 lines
184 B
Bash
Executable File
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
|