From 3ea421d9daa3aa789288b9ffdc09358621baea97 Mon Sep 17 00:00:00 2001 From: John R Barker Date: Mon, 31 Jul 2017 07:46:29 +0100 Subject: [PATCH] root when installing packages (#27477) --- test/integration/targets/prepare_ovs_tests/tasks/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/integration/targets/prepare_ovs_tests/tasks/main.yml b/test/integration/targets/prepare_ovs_tests/tasks/main.yml index d73b79effa..68241e4e6d 100644 --- a/test/integration/targets/prepare_ovs_tests/tasks/main.yml +++ b/test/integration/targets/prepare_ovs_tests/tasks/main.yml @@ -3,18 +3,21 @@ - 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 @@ -22,4 +25,5 @@ name: openvswitch state: installed update_cache: yes + become: yes when: ansible_distribution == 'Fedora'