WireGuard should be written "WireGuard"

master
Robin Schneider 4 years ago
parent eb6a54a0a7
commit f3c590665d
No known key found for this signature in database
GPG Key ID: A81E8006DC95EFE6

@ -17,7 +17,7 @@ Changelog
- Switched to install from ELRepo KMOD package for CentOS (see https://www.wireguard.com/install/). This change may break installation for systems with custom kernels. The role previously supported custom kernel implicitly because it was using DKMS package (contribution by @elcomtik) - Switched to install from ELRepo KMOD package for CentOS (see https://www.wireguard.com/install/). This change may break installation for systems with custom kernels. The role previously supported custom kernel implicitly because it was using DKMS package (contribution by @elcomtik)
Role removes DKMS wireguard package, however it doesn't remove jdoss-wireguard-epel-7 repository. If you don't need this repository, do cleanup by: Role removes DKMS WireGuard package, however it doesn't remove jdoss-wireguard-epel-7 repository. If you don't need this repository, do cleanup by:
* remove `/etc/yum.repos.d/wireguard.repo` * remove `/etc/yum.repos.d/wireguard.repo`

@ -54,7 +54,7 @@ wireguard_remote_directory: "/etc/wireguard" # On Linux
# The default port WireGuard will listen if not specified otherwise. # The default port WireGuard will listen if not specified otherwise.
wireguard_port: "51820" wireguard_port: "51820"
# The default interface name that wireguard should use if not specified otherwise. # The default interface name that WireGuard should use if not specified otherwise.
wireguard_interface: "wg0" wireguard_interface: "wg0"
# The default owner of the wg.conf file # The default owner of the wg.conf file

@ -9,7 +9,7 @@ wireguard_remote_directory: "{{ '/etc/wireguard' if not ansible_os_family == 'Da
# The default port WireGuard will listen if not specified otherwise. # The default port WireGuard will listen if not specified otherwise.
wireguard_port: "51820" wireguard_port: "51820"
# The default interface name that wireguard should use if not specified otherwise. # The default interface name that WireGuard should use if not specified otherwise.
wireguard_interface: "wg0" wireguard_interface: "wg0"
# The default owner of the wg.conf file # The default owner of the wg.conf file

@ -11,7 +11,7 @@
name: yum-plugin-elrepo name: yum-plugin-elrepo
update_cache: yes update_cache: yes
- name: (CentOS 7) Ensure wireguard DKMS package is removed - name: (CentOS 7) Ensure WireGuard DKMS package is removed
yum: yum:
name: name:
- "wireguard-dkms" - "wireguard-dkms"
@ -19,7 +19,7 @@
tags: tags:
- wg-install - wg-install
- name: (CentOS 7) Install wireguard packages - name: (CentOS 7) Install WireGuard packages
yum: yum:
name: name:
- "kmod-wireguard" - "kmod-wireguard"

@ -6,7 +6,7 @@
- elrepo-release - elrepo-release
update_cache: yes update_cache: yes
- name: (CentOS 8) Ensure wireguard DKMS package is removed - name: (CentOS 8) Ensure WireGuard DKMS package is removed
yum: yum:
name: name:
- "wireguard-dkms" - "wireguard-dkms"
@ -14,7 +14,7 @@
tags: tags:
- wg-install - wg-install
- name: (CentOS 8) Install wireguard packages - name: (CentOS 8) Install WireGuard packages
yum: yum:
name: name:
- "kmod-wireguard" - "kmod-wireguard"

@ -1,6 +1,6 @@
--- ---
- name: (Raspbian) Install GPG - required to add wireguard key - name: (Raspbian) Install GPG - required to add WireGuard key
apt: apt:
name: gnupg name: gnupg
state: present state: present
@ -83,7 +83,7 @@
tags: tags:
- wg-install - wg-install
- name: (Raspbian) Install wireguard packages - name: (Raspbian) Install WireGuard packages
apt: apt:
name: name:
- "wireguard-dkms" - "wireguard-dkms"

@ -1,5 +1,5 @@
--- ---
- name: (Debian) Install GPG - required to add wireguard key - name: (Debian) Install GPG - required to add WireGuard key
apt: apt:
name: gnupg name: gnupg
state: present state: present
@ -27,7 +27,7 @@
- "linux-headers-{{ kernel_header_version }}" - "linux-headers-{{ kernel_header_version }}"
state: present state: present
- name: (Debian) Install wireguard packages - name: (Debian) Install WireGuard packages
apt: apt:
name: name:
- "wireguard-dkms" - "wireguard-dkms"

@ -1,13 +1,13 @@
--- ---
- name: (Fedora) Add wireguard COPR - name: (Fedora) Add WireGuard COPR
yum_repository: yum_repository:
name: "jdoss-wireguard" name: "jdoss-wireguard"
description: "Copr repo for wireguard owned by jdoss" description: "Copr repo for WireGuard owned by jdoss"
baseurl: "https://copr-be.cloud.fedoraproject.org/results/jdoss/wireguard/fedora-$releasever-$basearch/" 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" gpgkey: "https://copr-be.cloud.fedoraproject.org/results/jdoss/wireguard/pubkey.gpg"
gpgcheck: yes gpgcheck: yes
- name: (Fedora) Install wireguard packages - name: (Fedora) Install WireGuard packages
yum: yum:
name: name:
- "wireguard-dkms" - "wireguard-dkms"

@ -26,7 +26,7 @@
tags: tags:
- wg-install - wg-install
- name: (Ubuntu) Install wireguard packages (for Ubuntu < 19.10) - name: (Ubuntu) Install WireGuard packages (for Ubuntu < 19.10)
apt: apt:
name: name:
- "wireguard-dkms" - "wireguard-dkms"

Loading…
Cancel
Save