Skip to content

Commit 82b0432

Browse files
author
Kristan Kenney
committed
Enable detection for Debian 10 in install bootstrapper
1 parent 7d9e5fc commit 82b0432

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

install/hst-install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# Currently Supported Operating Systems:
77
#
8-
# Debian 8, 9
8+
# Debian 8, 9, 10
99
# Ubuntu 16.04, 18.04
1010
#
1111

@@ -54,7 +54,7 @@ no_support_message(){
5454
echo "Your operating system (OS) is not supported by"
5555
echo "Hestia Control Panel. Officially supported releases:"
5656
echo "****************************************************"
57-
echo " Debian 8, 9"
57+
echo " Debian 8, 9, 10"
5858
echo " Ubuntu 16.04 LTS, 18.04 LTS"
5959
echo ""
6060
exit 1;
@@ -92,7 +92,7 @@ check_wget_curl(){
9292

9393
# Check for supported operating system before proceeding with download
9494
# of OS-specific installer, and throw error message if unsupported OS detected.
95-
if [[ "$release" =~ ^(8|9|16.04|18.04)$ ]]; then
95+
if [[ "$release" =~ ^(8|9|10|16.04|18.04)$ ]]; then
9696
check_wget_curl $*
9797
else
9898
no_support_message

0 commit comments

Comments
 (0)