diff options
author | Christian Pointner <equinox@spreadspace.org> | 2022-09-06 02:24:00 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2022-09-06 02:24:00 +0200 |
commit | ccdb42c40ce909c1026835b757984cf4cff7a940 (patch) | |
tree | 68d28bdff78a94e3deb179f955ab5a445a8a4c7a /inventory/host_vars/ch-auth-legacy.yml | |
parent | replace some more ipaddr() filter calls (cont'd) (diff) |
replace remaining ipaddr() filter calls
Diffstat (limited to 'inventory/host_vars/ch-auth-legacy.yml')
-rw-r--r-- | inventory/host_vars/ch-auth-legacy.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inventory/host_vars/ch-auth-legacy.yml b/inventory/host_vars/ch-auth-legacy.yml index c06796cb..acd36b7a 100644 --- a/inventory/host_vars/ch-auth-legacy.yml +++ b/inventory/host_vars/ch-auth-legacy.yml @@ -24,10 +24,10 @@ network: interfaces: "{{ install.interfaces }}" primary: &_network_primary_ name: eth0 - address: "{{ network_zones.svc.prefix | ipaddr(network_zones.svc.offsets[inventory_hostname]) | ipaddr('address/prefix') }}" + address: "{{ network_zones.svc.prefix | ansible.utils.ipaddr(network_zones.svc.offsets[inventory_hostname]) }}" gateway: "{{ network_zones.svc.gateway }}" static_routes: - destination: "{{ network_zones.lan.prefix }}" - gateway: "{{ network_zones.svc.prefix | ipaddr(network_zones.svc.offsets['ch-gw-lan']) | ipaddr('address') }}" + gateway: "{{ network_zones.svc.prefix | ansible.utils.ipaddr(network_zones.svc.offsets['ch-gw-lan']) | ansible.utils.ipaddr('address') }}" interfaces: - *_network_primary_ |