update say_hi role

This commit is contained in:
2024-07-26 14:09:24 -04:00
parent 584b849173
commit 85a5437774

View File

@ -3,5 +3,16 @@
ansible.builtin.debug:
msg: "Hi."
- name: Debug client_ips
ansible.builtin.debug:
msg: "{{ client_ips }}"
when:
- client_ips is defined
- name: Debug namehost
ansible.builtin.debug:
msg: "{{ namehost }}"
when:
- namehost is defined
...