diff options
author | Markos Chandras <mchandras@suse.de> | 2018-05-10 10:46:33 +0100 |
---|---|---|
committer | Markos Chandras <mchandras@suse.de> | 2018-05-10 10:46:33 +0100 |
commit | 363b1188fcd28a62c2892a9dcb0f0ad3c55c17bc (patch) | |
tree | aba2acef1e15b191857afecd7ff986d6c07cd891 | |
parent | 5ce903b099b47ffca3b50323e2396517a098bef7 (diff) |
jjb: xci: xci-start-new-vm: Fix passing YAML var files to Ansible
When passing a YAML variables file to Ansible, we need to prefix it
with '@'.
Change-Id: I884f4698a1033cca9ad55bf3592e1dd817273f81
Signed-off-by: Markos Chandras <mchandras@suse.de>
-rwxr-xr-x | jjb/xci/xci-start-new-vm.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/xci/xci-start-new-vm.sh b/jjb/xci/xci-start-new-vm.sh index e68b931db..174932813 100755 --- a/jjb/xci/xci-start-new-vm.sh +++ b/jjb/xci/xci-start-new-vm.sh @@ -68,7 +68,7 @@ export BUILD_TAG=$BUILD_TAG export NODE_NAME=$NODE_NAME if [[ ! -z ${WORKSPACE+x} && $GERRIT_PROJECT != "releng-xci" ]]; then - export XCI_ANSIBLE_PARAMS="-e /home/devuser/releng-xci/scenario_overrides.yml" + export XCI_ANSIBLE_PARAMS="-e @/home/devuser/releng-xci/scenario_overrides.yml" fi cd xci |