aboutsummaryrefslogtreecommitdiffstats
path: root/roles/wireguard/tasks/main.yml
diff options
context:
space:
mode:
authorRomain Gonçalves <me@rgoncalves.se>2021-07-29 17:00:20 +0200
committerRomain Gonçalves <me@rgoncalves.se>2021-07-29 17:00:20 +0200
commitb232b894c3cbe087c8d504e91637dcf62199eed1 (patch)
treeea72a7d1a7f63c6425ee46785e1cec924351b2c3 /roles/wireguard/tasks/main.yml
parent22126073344e60c405d086df37b64da0c6d3c086 (diff)
downloadold-infrastructure-b232b894c3cbe087c8d504e91637dcf62199eed1.tar.gz
Bump to third revision of homelab
Diffstat (limited to 'roles/wireguard/tasks/main.yml')
-rw-r--r--roles/wireguard/tasks/main.yml29
1 files changed, 4 insertions, 25 deletions
diff --git a/roles/wireguard/tasks/main.yml b/roles/wireguard/tasks/main.yml
index 5b48998..3b8f8ae 100644
--- a/roles/wireguard/tasks/main.yml
+++ b/roles/wireguard/tasks/main.yml
@@ -15,35 +15,14 @@
wg_host_conf: "{{ wg_dir }}/{{ ansible_host }}.conf"
wg_host_keys: "{{ wg_dir }}/{{ ansible_host }}.keys"
-- name: include configuration generation
+- name: include generation configuratin
include_tasks: generate.yml
-- name: include configuration synchronization
+- name: include synchronization configuration
include_tasks: synchronize.yml
-- name: enable wireguard for freebsd
- lineinfile:
- path: /etc/rc.conf
- regexp: "^wireguard_enable"
- line: wireguard_enable="YES"
- when: ansible_distribution == "FreeBSD"
-
-- name: enable interface for freebsd
- lineinfile:
- path: /etc/rc.conf
- regexp: "^wireguard_interfaces"
- line: wireguard_interfaces="{{ global.dcontroller }}"
- when: ansible_distribution == "FreeBSd"
-
-- name: generate and enable init script
- include_role: name=rc
- vars:
- rc_cmd: "{{ path_wgquick }}"
- rc_args: "up {{ global.dcontroller }}"
- rc_name: wireguard
- rc_user: "{{ user_root }}"
- ignore_errors: true
- when: ansible_distribution != "FreeBSD"
+- name: include service configuration
+ include_tasks: service.yml
- name: include server setup
include_tasks: server.yml
remember that computers suck.