From 6b5fbe8b32a0b10e4635257c2c92d099caf7d503 Mon Sep 17 00:00:00 2001 From: Robert Wimmer <2039811+githubixx@users.noreply.github.com> Date: Tue, 22 Mar 2022 22:38:01 +0100 Subject: [PATCH] Updates (#150) * update CHANGELOG * fix typo * fix host groups: el8-dkms -> el8dkms * remove empty line * update CHANGELOG --- CHANGELOG.md | 4 ++++ defaults/main.yml | 2 +- molecule/kvm/molecule.yml | 2 +- molecule/kvm/prepare.yml | 2 +- tasks/setup-rocky-8.yml | 1 - 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f7c84ed..e64cff9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ SPDX-License-Identifier: GPL-3.0-or-later # 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 - 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. diff --git a/defaults/main.yml b/defaults/main.yml index 81c56d8..7c31b84 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -65,7 +65,7 @@ wireguard_centos7_kernel_plus_reboot_timeout: "600" # 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 x64_64. +# is not x86_64. # # The default of "standard" will install the kernel module # with kmod-wireguard from ELRepo. diff --git a/molecule/kvm/molecule.yml b/molecule/kvm/molecule.yml index 8fb9869..bb62bd1 100644 --- a/molecule/kvm/molecule.yml +++ b/molecule/kvm/molecule.yml @@ -146,7 +146,7 @@ platforms: groups: - vpn - el8 - - el8-dkms + - el8dkms provisioner: name: ansible diff --git a/molecule/kvm/prepare.yml b/molecule/kvm/prepare.yml index a813304..33bd649 100644 --- a/molecule/kvm/prepare.yml +++ b/molecule/kvm/prepare.yml @@ -46,7 +46,7 @@ update_cache: true cache_valid_time: 3600 -- hosts: el8-dkms +- hosts: el8dkms remote_user: vagrant become: true gather_facts: true diff --git a/tasks/setup-rocky-8.yml b/tasks/setup-rocky-8.yml index 894b98e..aa617c3 100644 --- a/tasks/setup-rocky-8.yml +++ b/tasks/setup-rocky-8.yml @@ -54,4 +54,3 @@ state: present when: - wireguard_rockylinux8_installation_method == "dkms" -