Add basic fedora support (#32)
* Add basic fedora support * Add Fedora to metadata, update Changelog
This commit is contained in:
parent
e59c8bd027
commit
7826119ea7
|
@ -1,6 +1,11 @@
|
||||||
Changelog
|
Changelog
|
||||||
---------
|
---------
|
||||||
|
|
||||||
|
**4.2.0**
|
||||||
|
|
||||||
|
- Add support for Fedora (contribution by @ties)
|
||||||
|
|
||||||
|
|
||||||
**4.1.1**
|
**4.1.1**
|
||||||
|
|
||||||
- Install GPG to be able to import WireGuard key (Debian)
|
- Install GPG to be able to import WireGuard key (Debian)
|
||||||
|
|
|
@ -14,6 +14,9 @@ galaxy_info:
|
||||||
- name: EL
|
- name: EL
|
||||||
versions:
|
versions:
|
||||||
- 7
|
- 7
|
||||||
|
- name: Fedora
|
||||||
|
versions:
|
||||||
|
- 31
|
||||||
galaxy_tags:
|
galaxy_tags:
|
||||||
- networking
|
- networking
|
||||||
- security
|
- security
|
||||||
|
|
8
tasks/setup-fedora.yml
Normal file
8
tasks/setup-fedora.yml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
- name: 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
|
Reference in a new issue