From 7dbc4d81279b9c8a6dee4726b73e1dcba67d26f7 Mon Sep 17 00:00:00 2001 From: randomshell Date: Sun, 28 Jun 2020 19:52:55 +0000 Subject: [PATCH] Remove support for Debian 8 --- README.md | 1 - openvpn-install.sh | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bd23037..1077860 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,6 @@ The script supports these OS and architectures: | Arch Linux | ❔ | ✅ | ❔ | ✅ | | CentOS 7 | ✅ | ✅ | ✅ | ✅ | | CentOS 8 | ❌ | ✅ | ❌ | ✅ | -| Debian 8 | ✅ | ✅ | ✅ | ✅ | | Debian >= 9 | ✅ | ✅ | ✅ | ✅ | | Fedora >= 27 | ❔ | ✅ | ❔ | ❔ | | Ubuntu 16.04 | ✅ | ✅ | ❔ | ❔ | diff --git a/openvpn-install.sh b/openvpn-install.sh index 5f49ada..294d8ee 100755 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -22,10 +22,10 @@ function checkOS() { source /etc/os-release if [[ $ID == "debian" || $ID == "raspbian" ]]; then - if [[ $VERSION_ID -lt 8 ]]; then + if [[ $VERSION_ID -lt 9 ]]; then echo "⚠️ Your version of Debian is not supported." echo "" - echo "However, if you're using Debian >= 8 or unstable/testing then you can continue, at your own risk." + echo "However, if you're using Debian >= 9 or unstable/testing then you can continue, at your own risk." echo "" until [[ $CONTINUE =~ (y|n) ]]; do read -rp "Continue? [y/n]: " -e CONTINUE