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>
20 lines
455 B
YAML
20 lines
455 B
YAML
---
|
|
- name: (CentOS) Add WireGuard repository
|
|
get_url:
|
|
url: https://copr.fedorainfracloud.org/coprs/jdoss/wireguard/repo/epel-7/jdoss-wireguard-epel-7.repo
|
|
dest: /etc/yum.repos.d/wireguard.repo
|
|
|
|
- name: (CentOS) Install EPEL repository
|
|
yum:
|
|
name: epel-release
|
|
update_cache: yes
|
|
|
|
- name: (CentOS) Install wireguard packages
|
|
yum:
|
|
name:
|
|
- "wireguard-dkms"
|
|
- "wireguard-tools"
|
|
state: present
|
|
tags:
|
|
- wg-install
|