ansible-playbooks/test-playbook.yml

14 lines
256 B
YAML
Raw Permalink Normal View History

2015-12-08 00:16:07 -05:00
---
2022-07-31 03:35:07 -04:00
- name: Test become
hosts: all
become: true
tasks:
- name: Run whoami
ansible.builtin.command: whoami
register: result
when: true # keep the linter happy
- name: Print result
ansible.builtin.debug:
var: result.stdout