blob: 6b7cea238e3f452a2e74cfd45ed782151e4d6de7 (
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
|
---
- 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
|