16 lines
317 B
YAML
16 lines
317 B
YAML
---
|
|
|
|
- name: "restart wireguard"
|
|
ansible.builtin.systemd:
|
|
name: "wg-quick@{{ wireguard_interface }}"
|
|
state: restarted
|
|
|
|
- name: "restart nftables"
|
|
ansible.builtin.systemd:
|
|
name: "nftables"
|
|
state: restarted
|
|
|
|
- name: "restart bind9"
|
|
ansible.builtin.systemd:
|
|
name: "bind9"
|
|
state: restarted |