Skip to content

Commit 4bea80b

Browse files
authored
Merge pull request hestiacp#2675 from hestiacp/fix/2668-installer_error
Fix/2668 installer error
2 parents 2439db3 + 0c39ce3 commit 4bea80b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

install/hst-install-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1838,7 +1838,7 @@ if [ "$sieve" = 'yes' ]; then
18381838
# Modify Roundcube config
18391839
mkdir -p $RC_CONFIG_DIR/plugins/managesieve
18401840
cp -f $HESTIA_INSTALL_DIR/roundcube/plugins/config_managesieve.inc.php $RC_CONFIG_DIR/plugins/managesieve/config.inc.php
1841-
ln -s $RC_CONFIG_DIR/plugins/managesieve/config.inc.php $RC_INSTALL_DIR/plugins/managesieve/config.inc.php\
1841+
ln -s $RC_CONFIG_DIR/plugins/managesieve/config.inc.php $RC_INSTALL_DIR/plugins/managesieve/config.inc.php
18421842
chown -R root:www-data $RC_CONFIG_DIR/
18431843
chmod 751 -R $RC_CONFIG_DIR
18441844
chmod 644 $RC_CONFIG_DIR/*.php

install/hst-install-ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1902,7 +1902,7 @@ if [ "$sieve" = 'yes' ]; then
19021902
# Modify Roundcube config
19031903
mkdir -p $RC_CONFIG_DIR/plugins/managesieve
19041904
cp -f $HESTIA_INSTALL_DIR/roundcube/plugins/config_managesieve.inc.php $RC_CONFIG_DIR/plugins/managesieve/config.inc.php
1905-
ln -s $RC_CONFIG_DIR/plugins/managesieve/config.inc.php $RC_INSTALL_DIR/plugins/managesieve/config.inc.php\
1905+
ln -s $RC_CONFIG_DIR/plugins/managesieve/config.inc.php $RC_INSTALL_DIR/plugins/managesieve/config.inc.php
19061906
chown -R root:www-data $RC_CONFIG_DIR/
19071907
chmod 751 -R $RC_CONFIG_DIR
19081908
chmod 644 $RC_CONFIG_DIR/*.php

install/hst-install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Currently Supported Operating Systems:
1010
#
1111
# Debian 9, 10, 11
12-
# Ubuntu 18.04, 20.04
12+
# Ubuntu 18.04, 20.04, 22.04
1313
#
1414
# ======================================================== #
1515

@@ -66,7 +66,7 @@ no_support_message(){
6666
echo "Hestia Control Panel. Officially supported releases:"
6767
echo "****************************************************"
6868
echo " Debian 9, 10, 11"
69-
echo " Ubuntu 18.04, 20.04 LTS"
69+
echo " Ubuntu 18.04, 20.04, 22.04 LTS"
7070
echo ""
7171
exit 1;
7272
}
@@ -103,7 +103,7 @@ check_wget_curl(){
103103

104104
# Check for supported operating system before proceeding with download
105105
# of OS-specific installer, and throw error message if unsupported OS detected.
106-
if [[ "$release" =~ ^(9|10|11|18.04|20.04)$ ]]; then
106+
if [[ "$release" =~ ^(9|10|11|18.04|20.04|22.04)$ ]]; then
107107
check_wget_curl $*
108108
else
109109
no_support_message

0 commit comments

Comments
 (0)