2015-03-13 17:57:27 +01:00
|
|
|
- hosts: all
|
|
|
|
gather_facts: no
|
2015-03-23 21:20:24 +01:00
|
|
|
remote_user: root
|
2015-03-20 20:13:51 +01:00
|
|
|
roles:
|
2015-03-23 21:20:24 +01:00
|
|
|
- { role: test_become_r2 }
|
2015-03-20 20:13:51 +01:00
|
|
|
- { role: test_become_r2, sudo_user: testing }
|
2015-03-13 17:57:27 +01:00
|
|
|
tasks:
|
2015-03-23 21:20:24 +01:00
|
|
|
- command: whoami
|
2015-03-13 17:57:27 +01:00
|
|
|
- command: whoami
|
2015-03-13 21:31:20 +01:00
|
|
|
become_user: testing
|
2015-03-23 21:20:24 +01:00
|
|
|
- block:
|
|
|
|
- command: whoami
|
2015-03-17 16:35:24 +01:00
|
|
|
- block:
|
|
|
|
- command: whoami
|
|
|
|
become_user: testing
|