ea4eb8f1c8
* prepare_ovs call gather facts As we are no longer using run_ovs_integration_tests.yml we need to explicitly gather facts so we can call the correct package manager. * typo
21 lines
513 B
YAML
21 lines
513 B
YAML
---
|
|
|
|
# network-integration test are ran with gather_facts: no
|
|
# We need to explicitly call setup so ansible_distribution is set
|
|
|
|
- name: Gather facts
|
|
setup:
|
|
|
|
- name: Install openvswitch-switch package if we are on Ubuntu
|
|
apt:
|
|
name: openvswitch-switch
|
|
state: installed
|
|
update_cache: yes
|
|
when: ansible_distribution == 'Ubuntu'
|
|
|
|
- name: Install openvswitch package if we are on Fedora
|
|
yum:
|
|
name: openvswitch
|
|
state: installed
|
|
update_cache: yes
|
|
when: ansible_distribution == 'Fedora'
|