From b11296870ffdb397168f142f1cc48ec7ebb8b0a8 Mon Sep 17 00:00:00 2001 From: robiiinos Date: Sat, 27 Jun 2020 12:29:43 +0200 Subject: [PATCH 1/2] Typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 759540f..dae8552 100644 --- a/README.md +++ b/README.md @@ -216,7 +216,7 @@ Most of OpenVPN's encryption-related stuff is managed by [Easy-RSA](https://gith By default, OpenVPN doesn't enable compression. This script provides support for LZ0 and LZ4 (v1/v2) algorithms, the latter being more efficient. -However, it is discouraged to use compression since it since the [VORACLE attack](https://protonvpn.com/blog/voracle-attack/) makes use of it. +However, it is discouraged to use compression since the [VORACLE attack](https://protonvpn.com/blog/voracle-attack/) makes use of it. ### TLS version From ed26d6a649bf5396f999cc9508dfaaf276c185ad Mon Sep 17 00:00:00 2001 From: robiiinos Date: Sat, 27 Jun 2020 12:30:20 +0200 Subject: [PATCH 2/2] Update error message on CentOS install --- openvpn-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 4a9e347..9ddcbb8 100755 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -61,7 +61,7 @@ function checkOS() { if [[ ! $VERSION_ID =~ (7|8) ]]; then echo "⚠️ Your version of CentOS is not supported." echo "" - echo "The script only support CentOS 7." + echo "The script only support CentOS 7 and CentOS 8." echo "" exit 1 fi