You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
492 B
YAML
25 lines
492 B
YAML
# Verify passwordless sudo behaviour in various cases.
|
|
|
|
- name: integration/become/sudo_basic.yml
|
|
hosts: test-targets
|
|
any_errors_fatal: true
|
|
tasks:
|
|
|
|
- name: Verify we aren't root
|
|
shell: whoami
|
|
register: out
|
|
|
|
- assert:
|
|
that:
|
|
- out.stdout != 'root'
|
|
|
|
- name: Ensure passwordless sudo to root succeeds.
|
|
shell: whoami
|
|
become: true
|
|
become_user: root
|
|
register: out
|
|
|
|
- assert:
|
|
that:
|
|
- out.stdout == 'root'
|