You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
---
|
|
|
|
- name: (Debian) Install GPG - required to add WireGuard key
|
|
|
|
apt:
|
|
|
|
name: gnupg
|
|
|
|
state: present
|
|
|
|
|
|
|
|
- name: (Debian) Add WireGuard repository on buster or earlier
|
|
|
|
apt_repository:
|
|
|
|
repo: "deb http://deb.debian.org/debian buster-backports main"
|
|
|
|
state: present
|
|
|
|
update_cache: yes
|
|
|
|
when: ansible_distribution_version | int <= 10
|
|
|
|
tags:
|
|
|
|
- wg-install
|
|
|
|
|
|
|
|
- name: (Debian) Get architecture
|
|
|
|
command: "dpkg --print-architecture"
|
|
|
|
register: wireguard__fact_dpkg_arch
|
|
|
|
changed_when: False
|
|
|
|
|
|
|
|
- name: (Debian) Install kernel headers to compile Wireguard with DKMS
|
|
|
|
apt:
|
|
|
|
name:
|
|
|
|
- "linux-headers-{{ ('-cloud-' in ansible_kernel) | ternary(ansible_kernel,wireguard__fact_dpkg_arch.stdout) }}"
|
|
|
|
state: present
|
|
|
|
|
|
|
|
- name: (Debian) Install WireGuard packages
|
|
|
|
apt:
|
|
|
|
name:
|
|
|
|
- "wireguard"
|
|
|
|
state: present
|
|
|
|
tags:
|
|
|
|
- wg-install
|