Files
natelandau_ansible-homelab-…/tasks/sanity.yml
Nathaniel Landau 84958e0ef8 Initial commit
2022-02-05 16:22:33 -05:00

13 lines
292 B
YAML

---
# TASK DESCRIPTION:
# Always runs fist. Confirms we can actually use Ansible
- name: sanity - user mode
become: false
ansible.builtin.debug:
msg: "sanity check: user mode"
- name: sanity - become mode
become: true
ansible.builtin.debug:
msg: "sanity check: become mode"