summaryrefslogtreecommitdiffstats
path: root/xci/file
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2017-11-22 04:55:05 -0800
committerVictor Morales <victor.morales@intel.com>2017-11-22 05:50:54 -0800
commitd43c74da5313d963d8687cdf7159e24c5efc407d (patch)
tree1e2b91d439a972a191de06e1f7f262674ca7598f /xci/file
parent04d157cd1535097268da9d9441bcc411da687c85 (diff)
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 <victor.morales@intel.com>
Diffstat (limited to 'xci/file')
-rw-r--r--xci/file/aio/configure-opnfvhost.yml11
1 files changed, 11 insertions, 0 deletions
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