Limit become usage for testing

Change-Id: Ief1bc64a374be291b1efbf72b3b753f3e4737331
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2016-09-05 21:19:05 -04:00
parent 46a1298901
commit 549347be2d
No known key found for this signature in database
GPG Key ID: 611A80832067AF38
1 changed files with 4 additions and 1 deletions

View File

@ -13,12 +13,12 @@
# under the License.
---
- hosts: test
become: yes
vars:
rolename: "{{ lookup('pipe', 'pwd') | dirname | basename }}"
pre_tasks:
# Make sure OS does not have a stale package cache.
- name: Update apt cache.
become: yes
apt:
update_cache: yes
when: ansible_os_family == 'Debian'
@ -300,13 +300,16 @@
when: ansible_os_family == 'RedHat'
- name: Ensure zuul-launcher is running.
become: yes
shell: /usr/sbin/service zuul-launcher status
tags: skip_ansible_lint
- name: Ensure zuul-merger is running.
become: yes
shell: /usr/sbin/service zuul-merger status
tags: skip_ansible_lint
- name: Ensure zuul-server is running.
become: yes
shell: /usr/sbin/service zuul-server status
tags: skip_ansible_lint