network/handlers/main.yaml
2023-09-24 03:48:12 +03:00

10 lines
260 B
YAML

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