We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d2ab38 commit b7c5d5fCopy full SHA for b7c5d5f
roles/network/tasks/interfaces-Debian-family.yml
@@ -2,7 +2,9 @@
2
- name: Warning when used on Ubuntu >= 22.04
3
ansible.builtin.debug:
4
msg: "For Ubuntu >= 22.04 Netplan should be used instead of Interface"
5
- when: "ansible_distribution_version is version('22.04', '>=')"
+ when:
6
+ - ansible_distribution == "Ubuntu"
7
+ - ansible_distribution_version is version('22.04', '>=')
8
9
- name: Get existing netplan configuration files
10
ansible.builtin.find:
0 commit comments