2017-06-12 13:13:41 +02:00
|
|
|
---
|
|
|
|
|
2017-07-31 08:20:19 +02:00
|
|
|
- name: Install python
|
|
|
|
raw:
|
|
|
|
test -e /usr/bin/python || apt-get -y update && apt-get install -y python-minimal
|
2017-07-31 12:36:57 +02:00
|
|
|
become: yes
|
2017-07-31 08:20:19 +02:00
|
|
|
|
2017-07-30 19:39:22 +02:00
|
|
|
# network-integration test are ran with gather_facts: no
|
|
|
|
# We need to explicitly call setup so ansible_distribution is set
|
|
|
|
|
|
|
|
- name: Gather facts
|
|
|
|
setup:
|
2017-07-31 12:36:57 +02:00
|
|
|
become: yes
|
2017-07-30 19:39:22 +02:00
|
|
|
|
2017-06-12 13:13:41 +02:00
|
|
|
- name: Install openvswitch-switch package if we are on Ubuntu
|
|
|
|
apt:
|
|
|
|
name: openvswitch-switch
|
|
|
|
state: installed
|
|
|
|
update_cache: yes
|
2017-07-31 12:36:57 +02:00
|
|
|
become: yes
|
2017-06-12 13:13:41 +02:00
|
|
|
when: ansible_distribution == 'Ubuntu'
|
|
|
|
|
|
|
|
- name: Install openvswitch package if we are on Fedora
|
|
|
|
yum:
|
|
|
|
name: openvswitch
|
|
|
|
state: installed
|
|
|
|
update_cache: yes
|
2017-07-31 12:36:57 +02:00
|
|
|
become: yes
|
2017-06-12 13:13:41 +02:00
|
|
|
when: ansible_distribution == 'Fedora'
|