From 82776145f278cd7b2854acc2991f95fb836d832c Mon Sep 17 00:00:00 2001 From: Nyr Date: Sun, 18 Jun 2017 17:58:53 +0200 Subject: [PATCH] Add temporal warning for Debian Stretch users --- openvpn-install.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/openvpn-install.sh b/openvpn-install.sh index bc593c0..b5f81e2 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -8,6 +8,12 @@ # universal as possible. +if grep -qs "9.0" /etc/debian_version; then + echo "Debian 9.0 is not supported yet +The installer will be compatible within the next few days" + exit 7 +fi + # Detect Debian users running the script with "sh" instead of bash if readlink /proc/$$/exe | grep -qs "dash"; then echo "This script needs to be run with bash, not sh"