You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
490 B
YAML
24 lines
490 B
YAML
3 years ago
|
---
|
||
|
# Copyright (C) 2021 Robert Wimmer
|
||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
- name: (Rocky Linux 8) Install EPEL & ELRepo repository
|
||
|
yum:
|
||
|
name:
|
||
|
- epel-release
|
||
|
- elrepo-release
|
||
|
update_cache: true
|
||
|
|
||
|
- name: (Rocky Linux 8) Ensure WireGuard DKMS package is removed
|
||
|
yum:
|
||
|
name:
|
||
|
- "wireguard-dkms"
|
||
|
state: absent
|
||
|
|
||
|
- name: (Rocky Linux 8) Install WireGuard packages
|
||
|
yum:
|
||
|
name:
|
||
|
- "kmod-wireguard"
|
||
|
- "wireguard-tools"
|
||
|
state: present
|