summaryrefslogtreecommitdiffstats
path: root/roles/ands_idm/tasks/find_ands_connection.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/ands_idm/tasks/find_ands_connection.yml')
-rw-r--r--roles/ands_idm/tasks/find_ands_connection.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/roles/ands_idm/tasks/find_ands_connection.yml b/roles/ands_idm/tasks/find_ands_connection.yml
new file mode 100644
index 0000000..f4cf9b6
--- /dev/null
+++ b/roles/ands_idm/tasks/find_ands_connection.yml
@@ -0,0 +1,18 @@
+- name: "Detect ands network interface"
+ include_tasks: "find_interface_by_net.yml"
+ vars:
+ var: "ands_network_interface"
+ net: "{{ ands_network }}"
+ when:
+ - ands_network_interface is not defined
+ - ands_network is defined
+
+
+- name: "Detect ands network connection"
+ include_tasks: "find_connection_by_if.yml"
+ vars:
+ var: "ands_network_connection"
+ iface: "{{ ands_network_interface }}"
+ when:
+ - ands_network_connection is not defined
+ - ands_network_interface is defined