1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/test/integration/targets/prepare_ovs_tests/tasks/main.yml
2017-07-31 07:20:19 +01:00

25 lines
630 B
YAML

---
- name: Install python
raw:
test -e /usr/bin/python || apt-get -y update && apt-get install -y python-minimal
# 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'