From 3eaeafc0fba245bfa1ae25900b81a980a2ccd8d8 Mon Sep 17 00:00:00 2001 From: Andy McCrae Date: Wed, 7 Mar 2018 13:34:11 +0000 Subject: [PATCH] Fix BOOTSTRAP_OPTS BOOTSTRAP_OPTS was surrounded by " ", which meant it would evaluate to: -e 'BOOTSTRAP_OPTS', this became problematic if you wanted to add more than one value. By removing the " " this is resolved. Change-Id: I1351fddbdfd09f0a1a5eeef4afb44679bd39cd63 (cherry picked from commit 07817a412c6473a812c9c0a7014e45eba5c62a30) --- scripts/bootstrap-aio.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bootstrap-aio.sh b/scripts/bootstrap-aio.sh index 9ed9d5c23c..85ae13be8d 100755 --- a/scripts/bootstrap-aio.sh +++ b/scripts/bootstrap-aio.sh @@ -35,7 +35,7 @@ pushd tests else /opt/ansible-runtime/bin/ansible-playbook bootstrap-aio.yml \ -i test-inventory.ini \ - -e "${BOOTSTRAP_OPTS}" + -e ${BOOTSTRAP_OPTS} fi popd