Reset tasks specific to a network_plugin moved inside its role directory + Reset tasks specific to cilium

This commit is contained in:
Erwan Miran
2018-08-16 17:34:33 +02:00
parent 58ee5f1cc9
commit 7f16b46ed5
4 changed files with 40 additions and 26 deletions

View File

@@ -0,0 +1,9 @@
---
- name: "reset | check if network device {{ iface }} is present"
stat:
path: "/sys/class/net/{{ iface }}"
register: device_remains
- name: "reset | remove network device {{ iface }}"
command: "ip link del {{ iface }}"
when: device_remains.stat.exists