13621d4d68
* Changes wireguard apt repo to buster-backports * Add repo only on buster or earlier * No apt pin needed, backports has lower priority than main distribution * Update CHANGELOG.md Co-Authored-By: Robert Wimmer <2039811+githubixx@users.noreply.github.com> * Clarify effects of updating on system state Co-authored-by: Robert Wimmer <2039811+githubixx@users.noreply.github.com>
26 lines
604 B
YAML
26 lines
604 B
YAML
---
|
|
- name: Install GPG - required to add wireguard key
|
|
apt:
|
|
name: gnupg
|
|
state: present
|
|
|
|
- name: 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: Get architecture
|
|
shell: dpkg --print-architecture
|
|
register: dpkg_arch
|
|
changed_when: False
|
|
|
|
- name: Install kernel headers to compile wireguard with DKMS
|
|
apt:
|
|
name:
|
|
- "linux-headers-{{ dpkg_arch.stdout }}"
|
|
state: present
|