From 504597fe96d5df38bf0c280a576ea3f044629b79 Mon Sep 17 00:00:00 2001 From: Santiago Castro Date: Sun, 16 Apr 2017 23:21:39 -0300 Subject: [PATCH 1/3] Fix broken Markdown headings --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c33703f..b08a06a 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ This fork includes the following features : - Up-to-date OpenVPN thanks to [EPEL](http://fedoraproject.org/wiki/EPEL) for CentOS and [swupdate.openvpn.net](https://community.openvpn.net/openvpn/wiki/OpenvpnSoftwareRepos) for Ubuntu and Debian. These are third-party yet trusted repositories. - Other improvements ! -##DNS +## DNS The script will ask you which DNS resolvers you want to use when connected to the VPN. From 823ff21fccb3823fcb0f0fc16faf3fdaeb859f2b Mon Sep 17 00:00:00 2001 From: Angristan Date: Sun, 7 May 2017 23:56:19 +0200 Subject: [PATCH 2/3] Add support for Ubuntu 17.04 --- openvpn-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index cee3e36..3c59d67 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -25,7 +25,7 @@ if [[ -e /etc/debian_version ]]; then VERSION_ID=$(cat /etc/os-release | grep "VERSION_ID") RCLOCAL='/etc/rc.local' SYSCTL='/etc/sysctl.conf' - if [[ "$VERSION_ID" != 'VERSION_ID="7"' ]] && [[ "$VERSION_ID" != 'VERSION_ID="8"' ]] && [[ "$VERSION_ID" != 'VERSION_ID="12.04"' ]] && [[ "$VERSION_ID" != 'VERSION_ID="14.04"' ]] && [[ "$VERSION_ID" != 'VERSION_ID="16.04"' ]] && [[ "$VERSION_ID" != 'VERSION_ID="16.10"' ]]; then + if [[ "$VERSION_ID" != 'VERSION_ID="7"' ]] && [[ "$VERSION_ID" != 'VERSION_ID="8"' ]] && [[ "$VERSION_ID" != 'VERSION_ID="12.04"' ]] && [[ "$VERSION_ID" != 'VERSION_ID="14.04"' ]] && [[ "$VERSION_ID" != 'VERSION_ID="16.04"' ]] && [[ "$VERSION_ID" != 'VERSION_ID="16.10"' ]] && [[ "$VERSION_ID" != 'VERSION_ID="17.04"' ]]; then echo "Your version of Debian/Ubuntu is not supported." echo "I can't install a recent version of OpenVPN on your system." echo "" From 0bc1e6ea59986367f585f06935442d7decf82410 Mon Sep 17 00:00:00 2001 From: Angristan Date: Sun, 7 May 2017 23:59:43 +0200 Subject: [PATCH 3/3] Add support for Ubuntu 17.04 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b08a06a..878a7aa 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,7 @@ The script is made to work on these OS : - Ubuntu 14.04 LTS - Ubuntu 16.04 LTS - Ubuntu 16.10 +- Ubuntu 17.04 - CentOS 6 - CentOS 7 - Arch Linux