From a99812aa929fcb4a52d2f854b64ea790e4944c61 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Wed, 6 Jul 2022 03:01:14 +0200 Subject: [PATCH] facts: follow up on f6b49f78 f6b49f78a9f14c37b2ca81fa6172beba8f43adc4 changed a call back to `ipwrap` This fixes this. Signed-off-by: Guillaume Abrioux --- roles/ceph-facts/tasks/set_radosgw_address.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/ceph-facts/tasks/set_radosgw_address.yml b/roles/ceph-facts/tasks/set_radosgw_address.yml index 5860e17fa..a83032e2c 100644 --- a/roles/ceph-facts/tasks/set_radosgw_address.yml +++ b/roles/ceph-facts/tasks/set_radosgw_address.yml @@ -46,7 +46,7 @@ - name: set_fact _radosgw_address to radosgw_interface - ipv6 set_fact: - _radosgw_address: "{{ hostvars[item]['ansible_facts'][hostvars[item]['_interface']][ip_version][0]['address'] | ipwrap }}" + _radosgw_address: "{{ hostvars[item]['ansible_facts'][hostvars[item]['_interface']][ip_version][0]['address'] | ansible.utils.ipwrap }}" loop: "{{ groups.get(rgw_group_name, []) }}" delegate_to: "{{ item }}" delegate_facts: true -- 2.39.5