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.
35 lines
918 B
YAML
35 lines
918 B
YAML
---
|
|
- name: create wireguard config for peers
|
|
template:
|
|
src: wg.conf.j2
|
|
dest: /etc/wireguard/wgbb{{ item.name }}.conf
|
|
mode: 0400
|
|
with_items: "{{ wireguard_bb_peers }}"
|
|
|
|
- name: create wireguard up scripts for peers
|
|
template:
|
|
src: up.sh.j2
|
|
dest: /etc/wireguard/upbb{{ item.name }}.sh
|
|
mode: 0744
|
|
with_items: "{{ wireguard_bb_peers }}"
|
|
|
|
- name: create wireguard down scripts for peers
|
|
template:
|
|
src: down.sh.j2
|
|
dest: /etc/wireguard/downbb{{ item.name }}.sh
|
|
mode: 0744
|
|
with_items: "{{ wireguard_bb_peers }}"
|
|
|
|
- name: create wireguard backbone service template
|
|
copy:
|
|
src: wgbackbone@.service
|
|
dest: /etc/systemd/system/wgbackbone@.service
|
|
|
|
- name: start and enable wireguard mesh
|
|
systemd:
|
|
name: wgbackbone@{{ item.name }}.service
|
|
enabled: yes
|
|
state: started
|
|
daemon_reload: yes
|
|
with_items: "{{ wireguard_bb_peers }}"
|