summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzhihui wu <wu.zhihui1@zte.com.cn>2018-03-19 19:32:51 +0800
committerzhihui wu <wu.zhihui1@zte.com.cn>2018-03-22 09:05:52 +0800
commit3cd70da36e603f71a90f42623ae45f73e8cbb38a (patch)
tree471bfd2ba009f912f6fe847a349849c4474a15fd
parentd601cde6a374d4e5b5138aab4cf4e156df5dbbc4 (diff)
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 <wu.zhihui1@zte.com.cn>
-rw-r--r--resources/ansible_roles/qtip-generator/files/compute/run.yml8
1 files changed, 7 insertions, 1 deletions
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 %}