ansible/test/integration/targets/prepare_ovs_tests/tasks/main.yml

16 lines
358 B
YAML
Raw Normal View History

---
- 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'