From: zhihui wu Date: Mon, 19 Mar 2018 11:32:51 +0000 (+0800) Subject: bugfix: Unable to locate package python-minimal X-Git-Tag: opnfv-6.0.0~7^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=3cd70da36e603f71a90f42623ae45f73e8cbb38a;p=qtip.git bugfix: Unable to locate package python-minimal This log shows python-minimal can't be located. https://build.opnfv.org/ci/view/qtip/job/qtip-compute-fuel-zte-virtual6-master/21/console Change-Id: Idbdd47bae68ac5998c75f33ab8dd2851238d8484 Signed-off-by: zhihui wu --- diff --git a/resources/ansible_roles/qtip-generator/files/compute/run.yml b/resources/ansible_roles/qtip-generator/files/compute/run.yml index 59f84c3f..c166e488 100644 --- a/resources/ansible_roles/qtip-generator/files/compute/run.yml +++ b/resources/ansible_roles/qtip-generator/files/compute/run.yml @@ -21,9 +21,15 @@ {% if sut == 'vnf' %} gather_facts: no pre_tasks: - - name: check whether install python 2 in target + + - name: check whether install python 2.x in remote target become: yes raw: test -e /usr/bin/python || (apt-get -y update && apt-get install -y python-minimal) + register: rs + # Sometimes vm's network is not ready, have to give some attempts to install packages + until: rs.stdout.find("Setting up python-minimal") != -1 + retries: 10 + delay: 10 - name: gather facts setup: {% endif %}