* update CHANGELOG

* fix typo

* fix host groups: el8-dkms -> el8dkms

* remove empty line

* update CHANGELOG
master 9.1.0
Robert Wimmer 3 years ago committed by GitHub
parent 59651ccb2a
commit 6b5fbe8b32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,6 +5,10 @@ SPDX-License-Identifier: GPL-3.0-or-later
# Changelog # Changelog
## 9.1.0
- For `Rocky Linux 8` only: Added variable `wireguard_rockylinux8_installation_method`. Set `wireguard_rockylinux8_installation_method` to `dkms` to build WireGuard module from source, with wireguard-dkms. This is required if you use a custom kernel and/or your arch is not `x86_64`. The default of `standard` will install the kernel module with kmod-wireguard from ELRepo (contribution by @gitouche-sur-osm)
## 9.0.1 ## 9.0.1
- FIX: The template rendering the WireGuard configuration only checked if `wireguard_save_config` was set and if so sets `SaveConfig = true`. So setting `wireguard_save_config: "false"` had no effect. - FIX: The template rendering the WireGuard configuration only checked if `wireguard_save_config` was set and if so sets `SaveConfig = true`. So setting `wireguard_save_config: "false"` had no effect.

@ -65,7 +65,7 @@ wireguard_centos7_kernel_plus_reboot_timeout: "600"
# Set wireguard_rockylinux8_installation_method to "dkms" # Set wireguard_rockylinux8_installation_method to "dkms"
# to build WireGuard module from source, with wireguard-dkms. # to build WireGuard module from source, with wireguard-dkms.
# This is required if you use a custom kernel and/or your arch # This is required if you use a custom kernel and/or your arch
# is not x64_64. # is not x86_64.
# #
# The default of "standard" will install the kernel module # The default of "standard" will install the kernel module
# with kmod-wireguard from ELRepo. # with kmod-wireguard from ELRepo.

@ -146,7 +146,7 @@ platforms:
groups: groups:
- vpn - vpn
- el8 - el8
- el8-dkms - el8dkms
provisioner: provisioner:
name: ansible name: ansible

@ -46,7 +46,7 @@
update_cache: true update_cache: true
cache_valid_time: 3600 cache_valid_time: 3600
- hosts: el8-dkms - hosts: el8dkms
remote_user: vagrant remote_user: vagrant
become: true become: true
gather_facts: true gather_facts: true

@ -54,4 +54,3 @@
state: present state: present
when: when:
- wireguard_rockylinux8_installation_method == "dkms" - wireguard_rockylinux8_installation_method == "dkms"

Loading…
Cancel
Save