3a8d3260c4
* feat(debian) enable module to work on debian 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 * remove run_once for debian * Install kernel headers on debian 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. * Only use include_tasks to differentiate distributions Before Archlinux was split out using ansible_os_family. But since ansible_os_family overlaps for Debian and Ubuntu, two when statements were used to split out these cases: - All arch derivations - Debian - Ubuntu New style is cleaner. Arch derivations can still be used by overiding ansible_distribution in inventory. * incorporate feedback: move pin file, other changed_when syntax
26 lines
474 B
YAML
26 lines
474 B
YAML
---
|
|
- name: Update APT package cache
|
|
apt:
|
|
update_cache: true
|
|
cache_valid_time: 3600
|
|
tags:
|
|
- wg-install
|
|
|
|
- name: Install required packages
|
|
package:
|
|
name: "{{ item }}"
|
|
state: present
|
|
with_items:
|
|
- software-properties-common
|
|
- linux-headers-{{ ansible_kernel }}
|
|
tags:
|
|
- wg-install
|
|
|
|
- name: Add WireGuard repository
|
|
apt_repository:
|
|
repo: "ppa:wireguard/wireguard"
|
|
state: present
|
|
update_cache: yes
|
|
tags:
|
|
- wg-install
|