From 0dae6c56626dbc0e742d38f003ee2cfaf0df790a Mon Sep 17 00:00:00 2001 From: djpbessems Date: Tue, 19 Apr 2022 10:45:18 +0200 Subject: [PATCH] Fix typo --- playbook.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/playbook.yml b/playbook.yml index 47904d6..3e552e4 100644 --- a/playbook.yml +++ b/playbook.yml @@ -31,9 +31,12 @@ guestinfo.rootsshkey: "foo" guestinfo.ntpserver: "{{ network.ntpserver }}" guestinfo.ipaddress: "{{ item.ip | ansible.utils.ipaddr('address') }}" - guestinfo.prefixlength: "{{ (item.ip | ansible.utils.ipaddr('prefix') }}" + guestinfo.prefixlength: "{{ item.ip | ansible.utils.ipaddr('prefix') }}" guestinfo.dnsserver: "{{ network.dnsserver }}" guestinfo.gateway: "{{ network.gateway }}" # customization_spec: "{{ customization_spec }}" delegate_to: localhost with_items: "{{ servers }}" + register: result + - ansible.builtin.debug: + msg: result