summaryrefslogtreecommitdiff
path: root/test/integration/targets/prepare_ovs_tests/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/prepare_ovs_tests/tasks/main.yml')
-rw-r--r--test/integration/targets/prepare_ovs_tests/tasks/main.yml37
1 files changed, 0 insertions, 37 deletions
diff --git a/test/integration/targets/prepare_ovs_tests/tasks/main.yml b/test/integration/targets/prepare_ovs_tests/tasks/main.yml
deleted file mode 100644
index 23e22f537b..0000000000
--- a/test/integration/targets/prepare_ovs_tests/tasks/main.yml
+++ /dev/null
@@ -1,37 +0,0 @@
----
-# No easy way to know OS type without python or without ansible facts.
-# Run below raw commands and one would succeed with apt/yum on debian/centos
-- name: Install python
- raw:
- test -e /usr/bin/python || (apt-get -y update && apt-get install -y python-minimal)
- become: yes
- ignore_errors: yes
-
-- name: Install python
- raw:
- test -e /usr/bin/python || (yum -y update && yum install -y python)
- become: yes
- ignore_errors: 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: present
- 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'