You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
658 B
YAML
24 lines
658 B
YAML
|
|
- name: Install wg-quick@{{ peer.if.name | default("dn42_" + peer.name) }} config
|
|
template:
|
|
dest: "/etc/wireguard/{{ peer.if.name | default('dn42_' + peer.name) }}.conf"
|
|
src: "wg-quick.j2"
|
|
when: "peer.wg is defined"
|
|
register: "configuration"
|
|
|
|
- name: Enable wg-quick@{{ peer.if.name | default("dn42_" + peer.name) }} service
|
|
service:
|
|
name: "wg-quick@{{ peer.if.name | default('dn42_' + peer.name) }}"
|
|
enabled: yes
|
|
|
|
- name: Restart wg-quick@{{ peer.if.name | default('dn42_' + peer.name) }}
|
|
service:
|
|
name: "wg-quick@{{ peer.if.name | default('dn42_' + peer.name) }}"
|
|
state: restarted
|
|
when: "configuration is changed"
|
|
|
|
|
|
|
|
|
|
|