Rocky Linux + AlmaLinux support (#168)
* add EL9 to meta/main.yml * require Ansible >= 2.11 as Rocky Linux is only supported with this version or above * ansible-lint: use community.general.pacman module instead of ansible.builtin.pacman for Archlinux setup * add support for Rocky Linux 9 and AlmaLinux 9 * add openSUSE Leap 15.4 to README.md * update CHANGELOG.mdmaster 11.0.0
parent
3821005839
commit
f4573c5e8f
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
# Copyright (C) 2022 Robert Wimmer
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
- name: (AlmaLinux) Install wireguard-tools package
|
||||||
|
ansible.builtin.yum:
|
||||||
|
name: wireguard-tools
|
||||||
|
state: present
|
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
# Copyright (C) 2022 Robert Wimmer
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
- name: (Rocky Linux) Install wireguard-tools package
|
||||||
|
ansible.builtin.yum:
|
||||||
|
name: wireguard-tools
|
||||||
|
state: present
|
Loading…
Reference in New Issue