8aca464b8b
* Make sure ansible_become treated as a boolean
11 lines
293 B
YAML
11 lines
293 B
YAML
- hosts: testhost
|
|
gather_facts: no
|
|
tasks:
|
|
- name: Test proper bool evaluation of ansible_become (issue #70476)
|
|
shell: whoami
|
|
register: output
|
|
|
|
- name: Assert we are NOT the become user specified
|
|
assert:
|
|
that:
|
|
- "output.stdout != 'ansibletest1'"
|