13 lines
241 B
YAML
13 lines
241 B
YAML
---
|
|
- name: Reload network interfaces debian
|
|
become: true
|
|
command: /sbin/ifreload -a
|
|
|
|
- name: Restart dhcpcd raspbian
|
|
systemd:
|
|
name: dhcpcd
|
|
state: restarted
|
|
|
|
- name: Apply netplan ubuntu
|
|
become: true
|
|
command: netplan apply
|