From cd7ceaad0100bc152b7815e17f91eef8919b67fe Mon Sep 17 00:00:00 2001 From: Rado Chmiel Date: Mon, 15 Jul 2024 20:40:23 +0200 Subject: [PATCH] Fixing sandbox unbound variable error (#286) When using set -o nounset in Bash scripts variables have to have value --- e2e/provision/install_sandbox.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/provision/install_sandbox.sh b/e2e/provision/install_sandbox.sh index 129747f0..0bec1d15 100755 --- a/e2e/provision/install_sandbox.sh +++ b/e2e/provision/install_sandbox.sh @@ -75,7 +75,7 @@ fact_caching_connection = /tmp EOT # Management cluster creation -ansible_cmd="$(command -v ansible-playbook) -i 127.0.0.1, playbooks/cluster.yml --tags ${ANSIBLE_TAG} " +ansible_cmd="$(command -v ansible-playbook) -i 127.0.0.1, playbooks/cluster.yml --tags ${ANSIBLE_TAG:-all} " [[ ${DEBUG:-false} != "true" ]] || ansible_cmd+="-vvv " if [ -n "${ANSIBLE_CMD_EXTRA_VAR_LIST:-}" ]; then ansible_cmd+=" --extra-vars=\"${ANSIBLE_CMD_EXTRA_VAR_LIST}\""