Use needs/root, rather than become: yes (#27479)
This commit is contained in:
parent
3ea421d9da
commit
5576cc6769
2 changed files with 1 additions and 4 deletions
|
@ -1 +1,2 @@
|
|||
non_local
|
||||
needs/root
|
||||
|
|
|
@ -3,21 +3,18 @@
|
|||
- 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
|
||||
|
@ -25,5 +22,4 @@
|
|||
name: openvswitch
|
||||
state: installed
|
||||
update_cache: yes
|
||||
become: yes
|
||||
when: ansible_distribution == 'Fedora'
|
||||
|
|
Loading…
Reference in a new issue