add wireguard install with kmod

This commit is contained in:
ace 2022-07-13 15:27:32 +03:00
parent ba2e09f3aa
commit b16e523b60
No known key found for this signature in database
GPG Key ID: 2E47CC17BA7F8CF0
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,5 @@
- name: "Include WireGuard install"
include_tasks: wireguard_install.yaml
- name: "Include WireGuard UI install with podman" - name: "Include WireGuard UI install with podman"
include_tasks: podman.yaml include_tasks: podman.yaml
when: wireguard_ui_container_engine == 'podman' when: wireguard_ui_container_engine == 'podman'

View File

@ -0,0 +1,12 @@
- name: Install repos
dnf:
name:
- elrepo-release
- epel-release
state: present
- name: Install kmod wireguard
dnf:
name:
- kmod-wireguard
- wireguard-tools