cbc6e4ca4d
Add support for Debian based on the documentation in debian wiki and discussion in [0]. [0]: https://github.com/githubixx/ansible-role-wireguard/issues/5
29 lines
572 B
YAML
29 lines
572 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
|
|
run_once: true
|
|
tags:
|
|
- wg-install
|
|
|
|
- name: Add WireGuard repository
|
|
apt_repository:
|
|
repo: "deb http://deb.debian.org/debian/ unstable main"
|
|
state: present
|
|
update_cache: yes
|
|
run_once: true
|
|
tags:
|
|
- wg-install
|