From d43c74da5313d963d8687cdf7159e24c5efc407d Mon Sep 17 00:00:00 2001 From: Victor Morales Date: Wed, 22 Nov 2017 04:55:05 -0800 Subject: 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 --- xci/file/aio/configure-opnfvhost.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'xci/file') 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 -- cgit 1.2.3-korg