diff options
author | Niklas Yann Wettengel <niyawe@niyawe.de> | 2018-05-02 13:57:37 +0200 |
---|---|---|
committer | Niklas Yann Wettengel <niyawe@niyawe.de> | 2018-05-02 13:57:37 +0200 |
commit | dfc02c3178f0075adf671d7450c71c1b75f67b93 (patch) | |
tree | 051fd0c640398d171f8b9b04e5c9756f5068abdf /roles/install_wireguard_backbone/tasks | |
parent | c17cedcf1bb78b21c06837e46bf23451f7738026 (diff) |
babel mesh between uplinks
Diffstat (limited to 'roles/install_wireguard_backbone/tasks')
-rw-r--r-- | roles/install_wireguard_backbone/tasks/uplink_tasks.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/roles/install_wireguard_backbone/tasks/uplink_tasks.yml b/roles/install_wireguard_backbone/tasks/uplink_tasks.yml index 7eed705..ea906e5 100644 --- a/roles/install_wireguard_backbone/tasks/uplink_tasks.yml +++ b/roles/install_wireguard_backbone/tasks/uplink_tasks.yml @@ -6,6 +6,13 @@ mode: 0400 with_items: "{{ groups['fastd'] }}" +- name: create wireguard config for uplinks + template: + src: wg.conf.j2 + dest: /etc/wireguard/wgbb{{ hostvars[item]['wireguard_bb_name'] }}.conf + mode: 0400 + with_items: "{{ groups['uplink'] | difference([inventory_hostname]) }}" + - name: create wireguard config for additional peers template: src: wg2.conf.j2 @@ -20,6 +27,13 @@ mode: 0744 with_items: "{{ groups['fastd'] }}" +- name: create wireguard up scripts for uplinks + template: + src: up.sh.j2 + dest: /etc/wireguard/upbb{{ hostvars[item]['wireguard_bb_name'] }}.sh + mode: 0744 + with_items: "{{ groups['uplink'] | difference([inventory_hostname]) }}" + - name: create wireguard up scripts for additional peers template: src: up2.sh.j2 @@ -34,6 +48,13 @@ mode: 0744 with_items: "{{ groups['fastd'] }}" +- name: create wireguard down scripts for uplinks + template: + src: down.sh.j2 + dest: /etc/wireguard/downbb{{ hostvars[item]['wireguard_bb_name'] }}.sh + mode: 0744 + with_items: "{{ groups['uplink'] | difference([inventory_hostname]) }}" + - name: create wireguard down scripts for additional peers template: src: down2.sh.j2 @@ -49,6 +70,14 @@ daemon_reload: yes with_items: "{{ groups['fastd'] }}" +- name: start and enable wireguard mesh for uplinks + systemd: + name: wgbackbone@{{ hostvars[item]['wireguard_bb_name'] }}.service + enabled: yes + state: started + daemon_reload: yes + with_items: "{{ groups['uplink'] | difference([inventory_hostname]) }}" + - name: start and enable wireguard mesh for additional peers systemd: name: wgbackbone@{{ item.name }}.service |