aboutsummaryrefslogtreecommitdiffstats
path: root/roles/wireguard/tasks/main.yml
blob: 9f1d01d8f75343a8073ecf258ef642712c8e5ec1 (plain) (blame)
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
34
- name: create local wireguard directory
  file:
    path: "{{ wireguard_local_dir }}"
    state: directory
    mode: 0700
  run_once: true
  delegate_to: localhost

- name: create wireguard directory
  file:
    path: "{{ wireguard_dir }}"
    owner: 0
    group: 0
    mode: 0700
    state: directory

- name: include key generation
  include_tasks: keys.yml

- name: include configuration generation
  include_tasks: configuration.yml

- name: install wireguard on remote host
  package:
    name: wireguard-tools
    state: present

- name: include service configuration for server
  include_tasks: service.yml
  when: inventory_hostname == wireguard_domain_controller

- name: include service configuration for hosts
  include_tasks: service.yml
  when: inventory_hostname != wireguard_domain_controller
remember that computers suck.