Merge branch 'master' into devel
This commit is contained in:
commit
146c6436ae
|
@ -5,6 +5,10 @@ Changelog
|
||||||
|
|
||||||
- Allow to generate keys and configuration for non-ansible hosts like smartphones with `wireguard_unmanaged_hosts` (see `defaults/main.yml`) (contribution by @juju4)
|
- Allow to generate keys and configuration for non-ansible hosts like smartphones with `wireguard_unmanaged_hosts` (see `defaults/main.yml`) (contribution by @juju4)
|
||||||
|
|
||||||
|
**6.3.1**
|
||||||
|
|
||||||
|
- Support Openstack Debian images (contribution by @pallinger)
|
||||||
|
|
||||||
**6.3.0**
|
**6.3.0**
|
||||||
|
|
||||||
- Support Raspbian (contribution by @penguineer)
|
- Support Raspbian (contribution by @penguineer)
|
||||||
|
|
|
@ -18,10 +18,13 @@
|
||||||
register: dpkg_arch
|
register: dpkg_arch
|
||||||
changed_when: False
|
changed_when: False
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
kernel_header_version: "{{ ('-cloud-' in ansible_kernel) | ternary(ansible_kernel,dpkg_arch.stdout) }}"
|
||||||
|
|
||||||
- name: (Debian) Install kernel headers to compile Wireguard with DKMS
|
- name: (Debian) Install kernel headers to compile Wireguard with DKMS
|
||||||
apt:
|
apt:
|
||||||
name:
|
name:
|
||||||
- "linux-headers-{{ dpkg_arch.stdout }}"
|
- "linux-headers-{{ kernel_header_version }}"
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
- name: (Debian) Install wireguard packages
|
- name: (Debian) Install wireguard packages
|
||||||
|
|
Reference in a new issue