mirror of
https://github.com/natelandau/ansible-homelab-config.git
synced 2025-11-18 18:03:40 -05:00
13 lines
292 B
YAML
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"
|