summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Wallace <dwallacelf@gmail.com>2021-04-13 14:40:23 -0400
committerDave Wallace <dwallacelf@gmail.com>2021-04-13 14:46:52 -0400
commitadbd1055136dc970fd02c2dadbe7af1a55727bc2 (patch)
tree092008ba2a09bf1a1a00aafc9d81f723dd711617
parent20320eefc4b796dcfb5d24de1244ab724b8eb3be (diff)
builder: if new ansible dir doesn't exist, use old one.
Change-Id: I539fc3981b46a285bf6934d2dd13c8c660fc0e8a Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
-rw-r--r--docker/scripts/lib_csit.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/docker/scripts/lib_csit.sh b/docker/scripts/lib_csit.sh
index 221c1edb..6c064d0a 100644
--- a/docker/scripts/lib_csit.sh
+++ b/docker/scripts/lib_csit.sh
@@ -63,6 +63,9 @@ csit_install_packages() {
local branchname="$(echo $branch | sed -e 's,/,_,')"
local csit_dir="$DOCKER_CSIT_DIR"
local csit_ansible_dir="$csit_dir/fdio.infra.ansible"
+ if [ ! -d "$csit_ansible_dir" ] ; then
+ csit_ansible_dir="$csit_dir/resources/tools/testbed-setup/ansible"
+ fi
local bld_log="$DOCKER_BUILD_LOG_DIR/$FDIOTOOLS_IMAGENAME"
bld_log="${bld_log}-$branchname-csit_install_packages-bld.log"