From f3c590665d0378c8f5c37e5c01e574af37662ebf Mon Sep 17 00:00:00 2001 From: Robin Schneider Date: Sun, 13 Sep 2020 21:32:38 +0200 Subject: [PATCH] WireGuard should be written "WireGuard" --- CHANGELOG.md | 2 +- README.md | 2 +- defaults/main.yml | 2 +- tasks/setup-centos-7.yml | 4 ++-- tasks/setup-centos-8.yml | 4 ++-- tasks/setup-debian-raspbian.yml | 4 ++-- tasks/setup-debian-vanilla.yml | 4 ++-- tasks/setup-fedora.yml | 6 +++--- tasks/setup-ubuntu.yml | 2 +- 9 files changed, 15 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a335537..3792501 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) - 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` diff --git a/README.md b/README.md index 83ddcf9..610ff05 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ wireguard_remote_directory: "/etc/wireguard" # On Linux # The default port WireGuard will listen if not specified otherwise. 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" # The default owner of the wg.conf file diff --git a/defaults/main.yml b/defaults/main.yml index 90f0abf..eae7e8e 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -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. 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" # The default owner of the wg.conf file diff --git a/tasks/setup-centos-7.yml b/tasks/setup-centos-7.yml index cddcccd..1f1f50a 100644 --- a/tasks/setup-centos-7.yml +++ b/tasks/setup-centos-7.yml @@ -11,7 +11,7 @@ name: yum-plugin-elrepo update_cache: yes -- name: (CentOS 7) Ensure wireguard DKMS package is removed +- name: (CentOS 7) Ensure WireGuard DKMS package is removed yum: name: - "wireguard-dkms" @@ -19,7 +19,7 @@ tags: - wg-install -- name: (CentOS 7) Install wireguard packages +- name: (CentOS 7) Install WireGuard packages yum: name: - "kmod-wireguard" diff --git a/tasks/setup-centos-8.yml b/tasks/setup-centos-8.yml index edce375..fff516e 100644 --- a/tasks/setup-centos-8.yml +++ b/tasks/setup-centos-8.yml @@ -6,7 +6,7 @@ - elrepo-release update_cache: yes -- name: (CentOS 8) Ensure wireguard DKMS package is removed +- name: (CentOS 8) Ensure WireGuard DKMS package is removed yum: name: - "wireguard-dkms" @@ -14,7 +14,7 @@ tags: - wg-install -- name: (CentOS 8) Install wireguard packages +- name: (CentOS 8) Install WireGuard packages yum: name: - "kmod-wireguard" diff --git a/tasks/setup-debian-raspbian.yml b/tasks/setup-debian-raspbian.yml index 8e7214b..e8fb653 100644 --- a/tasks/setup-debian-raspbian.yml +++ b/tasks/setup-debian-raspbian.yml @@ -1,6 +1,6 @@ --- -- name: (Raspbian) Install GPG - required to add wireguard key +- name: (Raspbian) Install GPG - required to add WireGuard key apt: name: gnupg state: present @@ -83,7 +83,7 @@ tags: - wg-install -- name: (Raspbian) Install wireguard packages +- name: (Raspbian) Install WireGuard packages apt: name: - "wireguard-dkms" diff --git a/tasks/setup-debian-vanilla.yml b/tasks/setup-debian-vanilla.yml index 0b6aa0b..bc1a694 100644 --- a/tasks/setup-debian-vanilla.yml +++ b/tasks/setup-debian-vanilla.yml @@ -1,5 +1,5 @@ --- -- name: (Debian) Install GPG - required to add wireguard key +- name: (Debian) Install GPG - required to add WireGuard key apt: name: gnupg state: present @@ -27,7 +27,7 @@ - "linux-headers-{{ kernel_header_version }}" state: present -- name: (Debian) Install wireguard packages +- name: (Debian) Install WireGuard packages apt: name: - "wireguard-dkms" diff --git a/tasks/setup-fedora.yml b/tasks/setup-fedora.yml index 4561dba..f798e9f 100644 --- a/tasks/setup-fedora.yml +++ b/tasks/setup-fedora.yml @@ -1,13 +1,13 @@ --- -- name: (Fedora) Add wireguard COPR +- name: (Fedora) Add WireGuard COPR yum_repository: 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/" gpgkey: "https://copr-be.cloud.fedoraproject.org/results/jdoss/wireguard/pubkey.gpg" gpgcheck: yes -- name: (Fedora) Install wireguard packages +- name: (Fedora) Install WireGuard packages yum: name: - "wireguard-dkms" diff --git a/tasks/setup-ubuntu.yml b/tasks/setup-ubuntu.yml index 9df682e..6d932f5 100644 --- a/tasks/setup-ubuntu.yml +++ b/tasks/setup-ubuntu.yml @@ -26,7 +26,7 @@ tags: - wg-install - - name: (Ubuntu) Install wireguard packages (for Ubuntu < 19.10) + - name: (Ubuntu) Install WireGuard packages (for Ubuntu < 19.10) apt: name: - "wireguard-dkms"