Some checks reported errors
continuous-integration/drone/push Build encountered an error
19 lines
666 B
YAML
19 lines
666 B
YAML
---
|
|
- name: Restart WireGuard
|
|
service: name=wg-quick@{{ wireguard_interface }} state=restarted
|
|
|
|
- name: syncconf wireguard
|
|
ansible.builtin.shell: |
|
|
set -o errexit
|
|
set -o pipefail
|
|
set -o nounset
|
|
systemctl is-active wg-quick@{{ wireguard_interface|quote }} || systemctl start wg-quick@{{ wireguard_interface|quote }}
|
|
wg syncconf {{ wireguard_interface|quote }} <(wg-quick strip /etc/wireguard/{{ wireguard_interface|quote }}.conf)
|
|
exit 0
|
|
args:
|
|
executable: "/bin/bash"
|
|
# when:
|
|
# - not wireguard__restart_interface
|
|
# - not ansible_os_family == 'Darwin'
|
|
# - wireguard_service_enabled == "yes"
|
|
listen: "reconfigure wireguard"
|