# 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'