From 82eb596827f5982a14c7281a0e734744bc2d1d5a Mon Sep 17 00:00:00 2001 From: Jose Luis Franco Arza Date: Tue, 20 Feb 2018 10:34:38 +0100 Subject: [PATCH] Remove duplicated call to ansible-playbook. After merging [0], it seems that an extra command to run the CI job via ansible-playbook was left. An error was displayed as the left command didn't include the playbook to run. [0] https://review.openstack.org/#/c/525765/9 Change-Id: Ibb9eb78c8e4ef72da820ac64f755176356f9ab3c Closes-Bug: #1750518 --- toci_quickstart.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/toci_quickstart.sh b/toci_quickstart.sh index e1604f74c..411ff4ad6 100755 --- a/toci_quickstart.sh +++ b/toci_quickstart.sh @@ -88,11 +88,9 @@ source $OOOQ_DIR/ansible_ssh_env.sh [[ -n ${STATS_OOOQ:-''} ]] && export STATS_OOOQ=$(( $(date +%s) - STATS_OOOQ )) -run_with_timeout $START_JOB_TIME $QUICKSTART_INSTALL_CMD --extra-vars ci_job_end_time=$(( START_JOB_TIME + REMAINING_TIME*60 )) \ - 2>&1 | tee $LOGS_DIR/quickstart_install.log && exit_value=0 || exit_value=$? - for playbook in $PLAYBOOKS; do run_with_timeout $START_JOB_TIME $QUICKSTART_INSTALL_CMD \ + --extra-vars ci_job_end_time=$(( START_JOB_TIME + REMAINING_TIME*60 )) \ $LOCAL_WORKING_DIR/playbooks/$playbook \ 2>&1 | tee $LOGS_DIR/quickstart_install.log && exit_value=0 || exit_value=$?