From 8b6c81f79e61656de5766e94f9c1f0ccf4f3bd82 Mon Sep 17 00:00:00 2001 From: Nyr Date: Thu, 21 Apr 2022 21:11:44 +0200 Subject: [PATCH 1/6] Ubuntu 22.04 support --- openvpn-install.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index b39e795..c5136c8 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -236,7 +236,12 @@ LimitNPROC=infinity" > /etc/systemd/system/openvpn-server@server.service.d/disab systemctl enable --now firewalld.service fi # Get easy-rsa - easy_rsa_url='https://github.com/OpenVPN/easy-rsa/releases/download/v3.0.8/EasyRSA-3.0.8.tgz' + # The latest easy-rsa release is not yet compatible with Ubuntu 22.04 + if [[ "$os" == "ubuntu" && "$os_version" -eq 2204 ]]; then + easy_rsa_url='https://wg.nyr.be/download/EasyRSA-bf19e79.tgz' + else + easy_rsa_url='https://github.com/OpenVPN/easy-rsa/releases/download/v3.0.8/EasyRSA-3.0.8.tgz' + fi mkdir -p /etc/openvpn/server/easy-rsa/ { wget -qO- "$easy_rsa_url" 2>/dev/null || curl -sL "$easy_rsa_url" ; } | tar xz -C /etc/openvpn/server/easy-rsa/ --strip-components 1 chown -R root:root /etc/openvpn/server/easy-rsa/ From 36f1d82cbaf566a5de08a0792e7f04104f4914c7 Mon Sep 17 00:00:00 2001 From: Nyr Date: Wed, 27 Apr 2022 12:37:53 +0200 Subject: [PATCH 2/6] Replace git.io git.io will stop functioning by the end of this workweek: https://github.blog/changelog/2022-04-25-git-io-deprecation/ --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e4f84ee..890fd82 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ This script will let you set up your own VPN server in no more than a minute, ev ### Installation Run the script and follow the assistant: -`wget https://git.io/vpn -O openvpn-install.sh && bash openvpn-install.sh` +`wget https://github.com/Nyr/openvpn-install/raw/master/openvpn-install.sh && bash openvpn-install.sh` Once it ends, you can run it again to add more users, remove some of them or even completely uninstall OpenVPN. From a7474c95ca1df99d0474eb15b46eb4d4058ad9cf Mon Sep 17 00:00:00 2001 From: Nyr Date: Fri, 29 Apr 2022 16:44:49 +0200 Subject: [PATCH 3/6] Restore git.io git.io will not stop functioning after all: https://github.blog/changelog/2022-04-25-git-io-deprecation/?#changelog-64536 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 890fd82..e4f84ee 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ This script will let you set up your own VPN server in no more than a minute, ev ### Installation Run the script and follow the assistant: -`wget https://github.com/Nyr/openvpn-install/raw/master/openvpn-install.sh && bash openvpn-install.sh` +`wget https://git.io/vpn -O openvpn-install.sh && bash openvpn-install.sh` Once it ends, you can run it again to add more users, remove some of them or even completely uninstall OpenVPN. From 0709b9498ccdb11ba07890c75b1f7d6c5fd51455 Mon Sep 17 00:00:00 2001 From: Nyr Date: Thu, 5 May 2022 11:44:36 +0200 Subject: [PATCH 4/6] Update easy-rsa to v3.0.9-rc1 for Ubuntu 22.04 --- openvpn-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index c5136c8..408f4ba 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -236,9 +236,9 @@ LimitNPROC=infinity" > /etc/systemd/system/openvpn-server@server.service.d/disab systemctl enable --now firewalld.service fi # Get easy-rsa - # The latest easy-rsa release is not yet compatible with Ubuntu 22.04 + # The latest easy-rsa stable release is not yet compatible with Ubuntu 22.04 if [[ "$os" == "ubuntu" && "$os_version" -eq 2204 ]]; then - easy_rsa_url='https://wg.nyr.be/download/EasyRSA-bf19e79.tgz' + easy_rsa_url='https://github.com/OpenVPN/easy-rsa/releases/download/v3.0.9-rc1/EasyRSA-v3.0.9-rc1.tgz' else easy_rsa_url='https://github.com/OpenVPN/easy-rsa/releases/download/v3.0.8/EasyRSA-3.0.8.tgz' fi From 2c5bb08f4e1ecd117871d06b52c14a764f7fee56 Mon Sep 17 00:00:00 2001 From: Nyr Date: Wed, 18 May 2022 15:16:11 +0200 Subject: [PATCH 5/6] Update to easy-rsa v3.0.9 --- openvpn-install.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 408f4ba..fd7114f 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -236,12 +236,7 @@ LimitNPROC=infinity" > /etc/systemd/system/openvpn-server@server.service.d/disab systemctl enable --now firewalld.service fi # Get easy-rsa - # The latest easy-rsa stable release is not yet compatible with Ubuntu 22.04 - if [[ "$os" == "ubuntu" && "$os_version" -eq 2204 ]]; then - easy_rsa_url='https://github.com/OpenVPN/easy-rsa/releases/download/v3.0.9-rc1/EasyRSA-v3.0.9-rc1.tgz' - else - easy_rsa_url='https://github.com/OpenVPN/easy-rsa/releases/download/v3.0.8/EasyRSA-3.0.8.tgz' - fi + easy_rsa_url='https://github.com/OpenVPN/easy-rsa/releases/download/v3.0.9/EasyRSA-v3.0.9.tgz' mkdir -p /etc/openvpn/server/easy-rsa/ { wget -qO- "$easy_rsa_url" 2>/dev/null || curl -sL "$easy_rsa_url" ; } | tar xz -C /etc/openvpn/server/easy-rsa/ --strip-components 1 chown -R root:root /etc/openvpn/server/easy-rsa/ From c0a3562f64505678394ba99ea9c104fde14118cc Mon Sep 17 00:00:00 2001 From: Nyr Date: Thu, 19 May 2022 17:59:35 +0200 Subject: [PATCH 6/6] Update to easy-rsa v3.1.0 --- openvpn-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index fd7114f..effb1f6 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -236,7 +236,7 @@ LimitNPROC=infinity" > /etc/systemd/system/openvpn-server@server.service.d/disab systemctl enable --now firewalld.service fi # Get easy-rsa - easy_rsa_url='https://github.com/OpenVPN/easy-rsa/releases/download/v3.0.9/EasyRSA-v3.0.9.tgz' + easy_rsa_url='https://github.com/OpenVPN/easy-rsa/releases/download/v3.1.0/EasyRSA-3.1.0.tgz' mkdir -p /etc/openvpn/server/easy-rsa/ { wget -qO- "$easy_rsa_url" 2>/dev/null || curl -sL "$easy_rsa_url" ; } | tar xz -C /etc/openvpn/server/easy-rsa/ --strip-components 1 chown -R root:root /etc/openvpn/server/easy-rsa/