blob: 82c024dcd6141af47a1ad51ee947f34766dc9579 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
- name: create wireguard backbone service template
copy:
src: wgbackbone@.service
dest: /etc/systemd/system/wgbackbone@.service
- include_tasks: fastd_tasks.yml
when: "('fastd' in group_names)"
- include_tasks: wg_tasks.yml
when: "('wg' in group_names)"
- include_tasks: uplink_tasks.yml
when: "'uplink' in group_names"
|