2018-12-05 03:37:45 +08:00
|
|
|
---
|
|
|
|
- name: reset | check dummy0 network device
|
|
|
|
stat:
|
|
|
|
path: /sys/class/net/dummy0
|
2021-02-10 21:36:59 +08:00
|
|
|
get_attributes: no
|
|
|
|
get_checksum: no
|
|
|
|
get_mime: no
|
2018-12-05 03:37:45 +08:00
|
|
|
register: dummy0
|
|
|
|
|
|
|
|
- name: reset | remove the network device created by calico
|
|
|
|
command: ip link del dummy0
|
|
|
|
when: dummy0.stat.exists
|
|
|
|
|
2021-11-25 01:44:20 +08:00
|
|
|
- name: reset | get and remove remaining routes set by bird
|
2022-01-11 16:45:16 +08:00
|
|
|
shell: set -o pipefail && ip route show proto bird | xargs -i bash -c "ip route del {} proto bird "
|
|
|
|
args:
|
|
|
|
executable: /bin/bash
|
2020-07-28 23:39:47 +08:00
|
|
|
changed_when: false
|