Skip to content

Commit 53a66fd

Browse files
committed
Fix condition in netplan role for Ansible 2.19 compatibility
1 parent 4b52bef commit 53a66fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

molecule/netplan/verify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
- name: "Check that network settings are correct."
3838
ansible.builtin.assert:
3939
that:
40-
- "actual_ip_addresses | ansible.utils.ipaddr('bool')"
40+
- "False not in (actual_ip_addresses | ansible.utils.ipaddr('bool'))"
4141
- "target_ip_address | ansible.utils.ipaddr('bool')"
4242
- "actual_interface_name == target_interface_name"
4343
- "target_ip_address in actual_ip_addresses"

0 commit comments

Comments
 (0)