summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkos Chandras <mchandras@suse.de>2017-11-24 14:49:53 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-11-24 14:49:53 +0000
commitb1f8a1b75764937befd84cb00138c61c893eec82 (patch)
tree919b82374a3dbb946ff145cfabb3fdcf4b8e99af
parent182bd5c4a33ed9f852f74e6d20635787739edcab (diff)
parentd43c74da5313d963d8687cdf7159e24c5efc407d (diff)
Merge "Add required packages install for AIO"
-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 907e87de..76a36196 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