0bcbb2cc5a
There is no equivalent package of linux-headers-generic on debian. Package installation needs to specify the architecture (i.e. amd64), which is captured from dpkg output.
38 lines
792 B
YAML
38 lines
792 B
YAML
---
|
|
- name: Setup WireGuard preference
|
|
copy:
|
|
src: etc/apt/preferences.d/limit-unstable
|
|
dest: /etc/apt/preferences.d/limit-unstable
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
tags:
|
|
- wg-install
|
|
|
|
- name: Add WireGuard key
|
|
apt_key:
|
|
keyserver: "keyserver.ubuntu.com"
|
|
id: "8B48AD6246925553"
|
|
state: present
|
|
tags:
|
|
- wg-install
|
|
|
|
- name: Add WireGuard repository
|
|
apt_repository:
|
|
repo: "deb http://deb.debian.org/debian/ unstable main"
|
|
state: present
|
|
update_cache: yes
|
|
tags:
|
|
- wg-install
|
|
|
|
- name: Get architecture
|
|
shell: dpkg --print-architecture
|
|
register: dpkg_arch
|
|
changed_when: "0 != 0"
|
|
|
|
- name: Install kernel headers to compile wireguard with DKMS
|
|
apt:
|
|
name:
|
|
- "linux-headers-{{ dpkg_arch.stdout }}"
|
|
state: present
|