1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

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

This commit is contained in:
John R Barker 2017-07-31 08:03:47 +01:00 committed by GitHub
parent 3ea421d9da
commit 5576cc6769
2 changed files with 1 additions and 4 deletions

View file

@ -1 +1,2 @@
non_local non_local
needs/root

View file

@ -3,21 +3,18 @@
- name: Install python - name: Install python
raw: raw:
test -e /usr/bin/python || apt-get -y update && apt-get install -y python-minimal 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 # network-integration test are ran with gather_facts: no
# We need to explicitly call setup so ansible_distribution is set # We need to explicitly call setup so ansible_distribution is set
- name: Gather facts - name: Gather facts
setup: setup:
become: yes
- name: Install openvswitch-switch package if we are on Ubuntu - name: Install openvswitch-switch package if we are on Ubuntu
apt: apt:
name: openvswitch-switch name: openvswitch-switch
state: installed state: installed
update_cache: yes update_cache: yes
become: yes
when: ansible_distribution == 'Ubuntu' when: ansible_distribution == 'Ubuntu'
- name: Install openvswitch package if we are on Fedora - name: Install openvswitch package if we are on Fedora
@ -25,5 +22,4 @@
name: openvswitch name: openvswitch
state: installed state: installed
update_cache: yes update_cache: yes
become: yes
when: ansible_distribution == 'Fedora' when: ansible_distribution == 'Fedora'