blob: 4d60150ddb739ac5dbcb341e20332ac5fb87b511 (
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
|
---
- name: enable spreadspace repo
when: (ansible_distribution == 'Debian' and (ansible_distribution_major_version | int) < 11) or (ansible_distribution == 'Ubuntu' and (ansible_distribution_major_version | int) < 20)
import_role:
name: apt-repo/spreadspace
- name: install dkms
import_role:
name: prepare-dkms
- name: install wireguard packages
apt:
name:
- wireguard-dkms
- wireguard-tools
state: present
- name: check if module is available for the currently running kernel
command: modprobe --dry-run wireguard
check_mode: no
register: wireguard_module_available
failed_when: false
changed_when: false
- name: rebuild wireguard module
when: wireguard_module_available.rc != 0
command: dpkg-reconfigure wireguard-dkms
- name: check again if module is available for the currently running kernel
when: wireguard_module_available.rc != 0
command: modprobe --dry-run wireguard
check_mode: no
changed_when: false
|