network/handlers/main.yml
2021-10-27 17:08:42 +03:00

10 lines
235 B
YAML

---
- name: Up interface
shell: |
ifdown {{ item }} ; ifup {{ item }}
loop: "{{ reload_interfaces | unique }}"
- name: Reload interface with nmcli
command: nmcli conn up {{ item }}
loop: "{{ reload_interfaces | unique }}"