1
0
Fork 0
mirror of https://github.com/Nyr/openvpn-install.git synced 2025-04-04 21:23:31 +03:00

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/
This commit is contained in:
PF 2023-04-24 11:33:04 -04:00 committed by GitHub
parent d4ae10ec25
commit bb2cfbb2b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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