ansible/test/integration/targets/prepare_ovs_tests/tasks/main.yml
John R Barker 82a0a05406 Revert "Use needs/root, rather than become: yes" (#27483)
* Revert "Add test_items to junos_system integration target (#27481)"

This reverts commit 9e03953fce.

* Revert "Use needs/root, rather than become: yes (#27479)"

This reverts commit 5576cc6769.
2017-07-31 11:36:57 +01:00

29 lines
686 B
YAML

---
- name: Install python
raw:
test -e /usr/bin/python || apt-get -y update && apt-get install -y python-minimal
become: yes
# network-integration test are ran with gather_facts: no
# We need to explicitly call setup so ansible_distribution is set
- name: Gather facts
setup:
become: yes
- name: Install openvswitch-switch package if we are on Ubuntu
apt:
name: openvswitch-switch
state: installed
update_cache: yes
become: yes
when: ansible_distribution == 'Ubuntu'
- name: Install openvswitch package if we are on Fedora
yum:
name: openvswitch
state: installed
update_cache: yes
become: yes
when: ansible_distribution == 'Fedora'