mirror of
https://gitea.0xace.cc/ansible-galaxy/network.git
synced 2024-11-24 22:36:38 +00:00
10 lines
260 B
YAML
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 }}"
|