We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a974e0 commit 9d23c96Copy full SHA for 9d23c96
1 file changed
install/hst-install.sh
@@ -65,8 +65,8 @@ no_support_message(){
65
echo "Your operating system (OS) is not supported by"
66
echo "Hestia Control Panel. Officially supported releases:"
67
echo "****************************************************"
68
- echo " Debian 9, 10, 11"
69
- echo " Ubuntu 18.04, 20.04 LTS"
+ echo " Debian 10, 11"
+ echo " Ubuntu 18.04, 20.04, 22.04 LTS"
70
echo ""
71
exit 1;
72
}
@@ -103,7 +103,7 @@ check_wget_curl(){
103
104
# Check for supported operating system before proceeding with download
105
# of OS-specific installer, and throw error message if unsupported OS detected.
106
-if [[ "$release" =~ ^(9|10|11|18.04|20.04)$ ]]; then
+if [[ "$release" =~ ^(10|11|18.04|20.04|22.04)$ ]]; then
107
check_wget_curl $*
108
else
109
no_support_message
0 commit comments