From: Victor Morales Date: Wed, 22 Nov 2017 12:55:05 +0000 (-0800) Subject: Add required packages install for AIO X-Git-Tag: 6.0.0~232^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=d43c74da5313d963d8687cdf7159e24c5efc407d;p=releng-xci.git Add required packages install for AIO The All-in-One flavor is missing the tasks for the installation of distro and pip packages, these tasks are performed by other flavors. Change-Id: Ia0f707c08acd47e1dc4577916da58e338ba187fa Signed-off-by: Victor Morales --- diff --git a/xci/file/aio/configure-opnfvhost.yml b/xci/file/aio/configure-opnfvhost.yml index 6b140c15..f24f470c 100644 --- a/xci/file/aio/configure-opnfvhost.yml +++ b/xci/file/aio/configure-opnfvhost.yml @@ -33,3 +33,14 @@ chdir: "{{OPENSTACK_OSA_PATH}}" environment: SCENARIO: "{{ (XCI_CEPH_ENABLED == 'true') | ternary('ceph', 'aio') }}" + - name: Load distribution variables + include_vars: + file: ../var/{{ ansible_os_family }}.yml + - name: install opnfv required packages + package: + name: "{{ opnfv_required_packages }}" + state: latest + - name: install opnfv required pip packages + pip: + name: "{{ opnfv_required_pip }}" + state: present