Use sudo for role testing

There are 2 ways to realize the privilege escalation needed
for the gate jobs.

1) Editing the playbooks (and hope to not forget to write the
sudo/become lines for every role)
2) Editing the inventory and set the variable there.

I'm taking the second approach with the minimum
set of variables (become_method is sudo by default
and become_user is root by default).

Change-Id: I4f7d423ad2d21611c466ec6bb58d45c5a2fd00b9
This commit is contained in:
Jean-Philippe Evrard 2015-11-23 16:33:49 +01:00
parent a45aa3b2c1
commit e7b9f319d7
2 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,3 @@
[defaults]
roles_path = ../../
remote_tmp = ../.ansible/tmp/

View File

@ -1,2 +1,2 @@
[all]
localhost ansible_connection=local
localhost ansible_connection=local ansible_become=True