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.
30 lines
891 B
YAML
30 lines
891 B
YAML
---
|
|
- name: create wireguard config for peers
|
|
template:
|
|
src: wg.conf.j2
|
|
dest: /etc/wireguard/wgbb{{ hostvars[item]['wireguard_bb_name'] }}.conf
|
|
mode: 0400
|
|
with_items: "{{ groups['ffrl_uplink'] }}"
|
|
|
|
- name: create wireguard up scripts for peers
|
|
template:
|
|
src: up.sh.j2
|
|
dest: /etc/wireguard/upbb{{ hostvars[item]['wireguard_bb_name'] }}.sh
|
|
mode: 0744
|
|
with_items: "{{ groups['ffrl_uplink'] }}"
|
|
|
|
- name: create wireguard down scripts for peers
|
|
template:
|
|
src: down.sh.j2
|
|
dest: /etc/wireguard/downbb{{ hostvars[item]['wireguard_bb_name'] }}.sh
|
|
mode: 0744
|
|
with_items: "{{ groups['ffrl_uplink'] }}"
|
|
|
|
- name: start and enable wireguard mesh
|
|
systemd:
|
|
name: wgbackbone@{{ hostvars[item]['wireguard_bb_name'] }}.service
|
|
enabled: yes
|
|
state: started
|
|
daemon_reload: yes
|
|
with_items: "{{ groups['ffrl_uplink'] }}"
|