diff options
-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 |