From 7295627e67d39c8ab9ac804c1d07c44f124ce412 Mon Sep 17 00:00:00 2001 From: Angristan Date: Thu, 20 Oct 2016 14:33:16 +0200 Subject: [PATCH] Removing support for Ubuntu 15.10 Ubuntu 15.10 is not supported anymore since july 2016 : not safe to use it now --- openvpn-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index fa8b031..355a308 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -30,7 +30,7 @@ if [[ -e /etc/debian_version ]]; then #We get the version number, to verify we can get a recent version of OpenVPN VERSION_ID=$(cat /etc/*-release | grep "VERSION_ID") RCLOCAL='/etc/rc.local' - 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="15.10"' ]] && [[ "$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"' ]]; then echo "Your version of Debian/Ubuntu is not supported. Please look at the documentation." exit 4 fi