Change location of ipaddr filter

ipaddr filter has been moved from netcommon to utils collection [1]

Based on that we must add that collection to requirements.

[1] db4920ebf6

Depends-On: https://review.opendev.org/c/openstack/openstack-ansible/+/831525
Depends-On: https://review.opendev.org/c/openstack/ansible-role-systemd_networkd/+/831603
Depends-On: https://review.opendev.org/c/openstack/openstack-ansible-lxc_container_create/+/833118
Change-Id: I5412e9b4e85373c920b127a96dc9d505ca9fe337
This commit is contained in:
Dmitriy Rabotyagov 2022-03-10 17:10:15 +01:00 committed by Marc Gariépy
parent f16e0c8112
commit ed38f3393d
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
Name={{ lxc_net_bridge }}
[Network]
Address={{ (lxc_net_address ~ '/' ~ lxc_net_netmask) | ipaddr('cidr') }}
Address={{ (lxc_net_address ~ '/' ~ lxc_net_netmask) | ansible.utils.ipaddr('cidr') }}
{% if lxc_net_gateway is not none %}
Gateway={{ lxc_net_gateway }}
{% endif %}