diff options
author | Markos Chandras <mchandras@suse.de> | 2017-11-24 14:49:53 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-11-24 14:49:53 +0000 |
commit | b1f8a1b75764937befd84cb00138c61c893eec82 (patch) | |
tree | 919b82374a3dbb946ff145cfabb3fdcf4b8e99af /xci/file/aio | |
parent | 182bd5c4a33ed9f852f74e6d20635787739edcab (diff) | |
parent | d43c74da5313d963d8687cdf7159e24c5efc407d (diff) |
Merge "Add required packages install for AIO"
Diffstat (limited to 'xci/file/aio')
-rw-r--r-- | xci/file/aio/configure-opnfvhost.yml | 11 |
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 |