3
0
Fork 0

add CentOS support (#9)

This commit is contained in:
Alex Hanselka 2019-06-06 12:37:02 -05:00 committed by Robert Wimmer
parent 663dfcb2f2
commit 21706b822a
2 changed files with 15 additions and 0 deletions

View File

@ -1,6 +1,10 @@
Changelog
---------
**3.2.0**
- add support for RHEL/CentOS (contribution by ahanselka)
**3.1.0**
- pass package list directly to some modules by using the new and prefered syntax instead `loop` or `with_items` (contribution by ahanselka)

11
tasks/setup-centos.yml Normal file
View File

@ -0,0 +1,11 @@
---
- name: 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: Install EPEL repository
yum:
name: epel-release
update_cache: yes