mirror of
https://github.com/fscotto/infra.git
synced 2026-09-27 11:02:47 +00:00
11 lines
273 B
YAML
11 lines
273 B
YAML
---
|
|
- name: Restart WireGuard interface
|
|
tags: [wireguard, services]
|
|
ansible.builtin.systemd:
|
|
name: "wg-quick@{{ wireguard_interface }}.service"
|
|
state: restarted
|
|
daemon_reload: true
|
|
when:
|
|
- wireguard_overlay_enabled | bool
|
|
- not ansible_check_mode
|