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
867 B
YAML
30 lines
867 B
YAML
7 years ago
|
---
|
||
|
- 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['fastd'] }}"
|
||
|
|
||
|
- 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['fastd'] }}"
|
||
|
|
||
|
- 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['fastd'] }}"
|
||
|
|
||
|
- 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['fastd'] }}"
|