summaryrefslogtreecommitdiff
path: root/roles/install_wireguard_backbone/tasks/fastd_tasks.yml
blob: d1d99740de943d8a01a6349a775e49f88f79aa56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
- 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['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['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['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['uplink'] }}"