13 lines
319 B
YAML
13 lines
319 B
YAML
---
|
|
- name: Restart wireguard
|
|
ansible.builtin.systemd:
|
|
name: "wg-quick@{{ edge_vps_wireguard_interface }}"
|
|
state: restarted
|
|
listen: restart wireguard
|
|
|
|
- name: Restart traefik
|
|
ansible.builtin.command:
|
|
cmd: docker compose restart
|
|
chdir: "{{ edge_vps_traefik_config_dir }}"
|
|
listen: restart traefik
|