summaryrefslogtreecommitdiffstats
path: root/roles/ands_network/tasks/nm_configure_connection.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/ands_network/tasks/nm_configure_connection.yml')
-rw-r--r--roles/ands_network/tasks/nm_configure_connection.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/roles/ands_network/tasks/nm_configure_connection.yml b/roles/ands_network/tasks/nm_configure_connection.yml
index 9354fbf..b2f2e9f 100644
--- a/roles/ands_network/tasks/nm_configure_connection.yml
+++ b/roles/ands_network/tasks/nm_configure_connection.yml
@@ -32,21 +32,21 @@
command: "nmcli connection add type bridge ifname {{ bridge | quote }} con-name {{ name }} ip4 {{ cidr }}"
when:
- bridge is defined
- - (conres.rc != 0) or (not (delres | skipped))
+ - (conres.rc != 0) or (not (delres is skipped))
- (conres.rc != 0) or (not (alias | default(false)))
- name: "connect bridge '{{ bridge }}' to interface '{{ iface }}'"
command: "nmcli connection add type bridge-slave ifname {{ iface | quote }} master {{ bridge | quote }}"
when:
- bridge is defined
- - (conres.rc != 0) or (not (delres | skipped))
+ - (conres.rc != 0) or (not (delres is skipped))
- (conres.rc != 0) or (not (alias | default(false)))
- name: "configure network interface '{{ iface }}' to '{{ cidr }}'"
command: "nmcli connection add type infiniband ifname {{ iface | quote }} con-name {{ name }} ip4 {{ cidr }}"
when:
- bridge is not defined
- - (conres.rc != 0) or (not (delres | skipped))
+ - (conres.rc != 0) or (not (delres is skipped))
- (conres.rc != 0) or (not (alias | default(false)))
- name: "add ip alias '{{ cidr }}' to connection '{{ conres.stdout }}' using interface '{{ iface }}'"
@@ -63,6 +63,6 @@
vars:
cname: "{{ (conres.stdout == '') | ternary(name, conres.stdout) }}"
when:
- - not(alres | skipped)
- - alres | succeeded
+ - not(alres is skipped)
+ - alres is succeeded
- not ip_present