17 lines
297 B
YAML
17 lines
297 B
YAML
- name: apt-update
|
|
apt:
|
|
update_cache: yes
|
|
|
|
- name: Restart ndppd
|
|
service:
|
|
name: ndppd
|
|
state: restarted
|
|
|
|
- name: Reload nftables
|
|
command: /usr/sbin/nft -f /etc/nftables.conf
|
|
|
|
- name: Restart wg-quick service
|
|
service:
|
|
name: "wg-quick@{{ wireguard_if }}"
|
|
state: restarted
|