mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
16 lines
358 B
YAML
16 lines
358 B
YAML
|
---
|
||
|
|
||
|
- 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'
|