From 29d43c61f2c2e671f872a03fcf327ce023c759e1 Mon Sep 17 00:00:00 2001 From: Stanislas Date: Fri, 20 May 2022 18:37:49 +0200 Subject: [PATCH 1/4] Update LICENSE --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 35cbf06..0daab55 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2019 angristan (Stanislas Lange) +Copyright (c) 2019 angristan Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in From 514901fd0b3083e357a1ffd0a260652ba9faf41f Mon Sep 17 00:00:00 2001 From: Shihaam Abdul Rahman Date: Sat, 1 Oct 2022 17:52:56 +0000 Subject: [PATCH 2/4] Update readme (#363) DO changed pricing, made $5 one to $6 and introduced a new $4 one. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7c11880..c1162a0 100644 --- a/README.md +++ b/README.md @@ -44,5 +44,5 @@ I recommend these cheap cloud providers for your VPN server: - [Vultr](https://goo.gl/Xyd1Sc): Worldwide locations, IPv6 support, starting at \$3.50/month - [Hetzner](https://hetzner.cloud/?ref=ywtlvZsjgeDq): Germany and Finland, IPv6, 20 TB of traffic, starting at €3/month -- [Digital Ocean](https://goo.gl/qXrNLK): Worldwide locations, IPv6 support, starting at \$5/month +- [Digital Ocean](https://goo.gl/qXrNLK): Worldwide locations, IPv6 support, starting at \$4/month - [PulseHeberg](https://goo.gl/76yqW5): France, unlimited bandwidth, starting at €3/month From f895b55058ea54c2aa2d645c3ff33166e79a54d2 Mon Sep 17 00:00:00 2001 From: Hasan Aga Date: Sun, 16 Oct 2022 22:59:16 +0300 Subject: [PATCH 3/4] remove default char "n" from uninstall step (#370) --- wireguard-install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wireguard-install.sh b/wireguard-install.sh index 9126172..2f0a3e6 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -362,7 +362,8 @@ function revokeClient() { function uninstallWg() { echo "" - read -rp "Do you really want to remove WireGuard? [y/n]: " -e -i n REMOVE + read -rp "Do you really want to remove WireGuard? [y/n]: " -e REMOVE + REMOVE=${REMOVE:-n} if [[ $REMOVE == 'y' ]]; then checkOS From 193fe396a18682c0c90684f03af0efed5043e2a2 Mon Sep 17 00:00:00 2001 From: Stanislas Lange Date: Sun, 16 Oct 2022 22:01:08 +0200 Subject: [PATCH 4/4] Remove trailing space --- wireguard-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wireguard-install.sh b/wireguard-install.sh index 2f0a3e6..ff602b9 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -362,7 +362,7 @@ function revokeClient() { function uninstallWg() { echo "" - read -rp "Do you really want to remove WireGuard? [y/n]: " -e REMOVE + read -rp "Do you really want to remove WireGuard? [y/n]: " -e REMOVE REMOVE=${REMOVE:-n} if [[ $REMOVE == 'y' ]]; then checkOS