ping_check/node2.yml
2024-03-29 11:16:07 -04:00

13 lines
250 B
YAML

---
- name: Ping check to determine if hosts are reachable
hosts: all
become: true
gather_facts: false
tasks:
- name: Debug test_set_stats
ansible.builtin.debug:
msg: "{{ test_set_stats | default('It didnt work!') }}"
...