add CentOS support (#9)
This commit is contained in:
parent
663dfcb2f2
commit
21706b822a
|
@ -1,6 +1,10 @@
|
||||||
Changelog
|
Changelog
|
||||||
---------
|
---------
|
||||||
|
|
||||||
|
**3.2.0**
|
||||||
|
|
||||||
|
- add support for RHEL/CentOS (contribution by ahanselka)
|
||||||
|
|
||||||
**3.1.0**
|
**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)
|
- 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
11
tasks/setup-centos.yml
Normal 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
|
Reference in a new issue