9f76b8baf5
* update Ansible Galaxy meta info (added Ubunut Focal Fossa / Debian Buster) * update CHANGELOG (Ubuntu 20.04 support) * move OS package installation to OS specific subtasks * update README * update CHANGELOG Co-authored-by: githubixx <home@tauceti.net>
18 lines
517 B
YAML
18 lines
517 B
YAML
---
|
|
- name: (Fedora) Add wireguard COPR
|
|
yum_repository:
|
|
name: "jdoss-wireguard"
|
|
description: "Copr repo for wireguard owned by jdoss"
|
|
baseurl: "https://copr-be.cloud.fedoraproject.org/results/jdoss/wireguard/fedora-$releasever-$basearch/"
|
|
gpgkey: "https://copr-be.cloud.fedoraproject.org/results/jdoss/wireguard/pubkey.gpg"
|
|
gpgcheck: yes
|
|
|
|
- name: (Fedora) Install wireguard packages
|
|
yum:
|
|
name:
|
|
- "wireguard-dkms"
|
|
- "wireguard-tools"
|
|
state: present
|
|
tags:
|
|
- wg-install
|