diff options
author | Patrice Buriez <patrice.buriez@intel.com> | 2018-09-13 15:01:32 +0200 |
---|---|---|
committer | Patrice Buriez <patrice.buriez@intel.com> | 2018-09-14 14:19:58 +0000 |
commit | e625e162c2e4f817f1bc6a440d85b3cc59272ac4 (patch) | |
tree | 5d80168b894b8dcb4c66ca7aa38de40af76cee3c | |
parent | e54efd1af4b07d508327db2cd3aa48e4473e1ba5 (diff) |
Fix Yardstick Docker image ARM build
Soften sed pattern, in order to cope with new contents of
ansible/install.yaml, recently modified by change 61173.
Previous sed pattern does not work anymore against this changed line:
https://gerrit.opnfv.org/gerrit/#/c/61173/4/ansible/install.yaml@39
JIRA: YARDSTICK-1411
Change-Id: I1e1ebd454900252c29263e746470e18e3139e016
Signed-off-by: Patrice Buriez <patrice.buriez@intel.com>
-rw-r--r-- | docker/Dockerfile.aarch64.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/Dockerfile.aarch64.patch b/docker/Dockerfile.aarch64.patch index bad472007..6c32404ca 100644 --- a/docker/Dockerfile.aarch64.patch +++ b/docker/Dockerfile.aarch64.patch @@ -38,7 +38,7 @@ index 71ce6b58..fce7c116 100644 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/storperf ${STORPERF_REPO_DIR} -RUN ansible-playbook -i ${YARDSTICK_REPO_DIR}/ansible/install-inventory.ini -c local -vvv -e INSTALLATION_MODE="container" ${YARDSTICK_REPO_DIR}/ansible/install.yaml -+RUN sed -i -e '/- configure_gui/d' ${YARDSTICK_REPO_DIR}/ansible/install.yaml && \ ++RUN sed -i -e '/configure_gui/d' ${YARDSTICK_REPO_DIR}/ansible/install.yaml && \ + ansible-playbook -i ${YARDSTICK_REPO_DIR}/ansible/install-inventory.ini -c local -vvv -e INSTALLATION_MODE="container" ${YARDSTICK_REPO_DIR}/ansible/install.yaml RUN ${YARDSTICK_REPO_DIR}/docker/supervisor.sh |