From bb2cfbb2b55d952d675da0ad9c3d8603936d7929 Mon Sep 17 00:00:00 2001 From: PF Date: Mon, 24 Apr 2023 11:33:04 -0400 Subject: [PATCH] Include "Kali Rolling" based on Debian Testing The script throws a error when os_version is "kali-rolling". The modifications allows to run the script against Kali Rolling. Ref.: https://www.kali.org/docs/policy/kali-linux-relationship-with-debian/ --- openvpn-install.sh | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 637fe3c..b8620d8 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -28,7 +28,7 @@ if grep -qs "ubuntu" /etc/os-release; then group_name="nogroup" elif [[ -e /etc/debian_version ]]; then os="debian" - os_version=$(grep -oE '[0-9]+' /etc/debian_version | head -1) + os_version=$(grep -oE '[0-9]+|kali-rolling' /etc/debian_version | head -1) group_name="nogroup" elif [[ -e /etc/almalinux-release || -e /etc/rocky-release || -e /etc/centos-release ]]; then os="centos" @@ -50,10 +50,14 @@ This version of Ubuntu is too old and unsupported." exit fi -if [[ "$os" == "debian" && "$os_version" -lt 9 ]]; then - echo "Debian 9 or higher is required to use this installer. -This version of Debian is too old and unsupported." +if [[ "$os" == "debian" ]]; then + if [[ "$os_version" == "kali-rolling" ]]; then + echo "" + elif [[ "$os_version" -lt 9 ]]; then + echo "Debian 9 or higher or Kali-Rolling is required to use this installer. +This version of Debian/Kali is too old and unsupported." exit + fi fi if [[ "$os" == "centos" && "$os_version" -lt 7 ]]; then