add log line for the successful address selection

This commit is contained in:
Stein van Broekhoven 2025-04-01 14:12:46 +02:00 committed by GitHub
parent 573aa50700
commit 4399a9cd55
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -381,6 +381,7 @@ class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable):
if 'gateway' not in iface: if 'gateway' not in iface:
self.display.vvv(f"Interface {iface['iface']} on node {node} does not have a gateway") self.display.vvv(f"Interface {iface['iface']} on node {node} does not have a gateway")
continue continue
self.display.vv(f"Using interface {iface['iface']} on node {node} with address {iface['address']} as node ip for ansible_host")
return iface['address'] return iface['address']
except Exception: except Exception:
continue continue