diff --git a/roles/say_hi/tasks/main.yml b/roles/say_hi/tasks/main.yml index c6bfab7..e7dd353 100644 --- a/roles/say_hi/tasks/main.yml +++ b/roles/say_hi/tasks/main.yml @@ -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 ...