Explorar el Código

Merge pull request #2675 from hestiacp/fix/2668-installer_error

Fix/2668 installer error
Raphael hace 3 años
padre
commit
4bea80b020
Se han modificado 3 ficheros con 5 adiciones y 5 borrados
  1. 1 1
      install/hst-install-debian.sh
  2. 1 1
      install/hst-install-ubuntu.sh
  3. 3 3
      install/hst-install.sh

+ 1 - 1
install/hst-install-debian.sh

@@ -1838,7 +1838,7 @@ if [ "$sieve" = 'yes' ]; then
         # Modify Roundcube config 
         mkdir -p $RC_CONFIG_DIR/plugins/managesieve
         cp -f $HESTIA_INSTALL_DIR/roundcube/plugins/config_managesieve.inc.php $RC_CONFIG_DIR/plugins/managesieve/config.inc.php
-        ln -s $RC_CONFIG_DIR/plugins/managesieve/config.inc.php $RC_INSTALL_DIR/plugins/managesieve/config.inc.php\
+        ln -s $RC_CONFIG_DIR/plugins/managesieve/config.inc.php $RC_INSTALL_DIR/plugins/managesieve/config.inc.php
         chown -R root:www-data $RC_CONFIG_DIR/
         chmod 751 -R $RC_CONFIG_DIR
         chmod 644 $RC_CONFIG_DIR/*.php

+ 1 - 1
install/hst-install-ubuntu.sh

@@ -1902,7 +1902,7 @@ if [ "$sieve" = 'yes' ]; then
         # Modify Roundcube config 
         mkdir -p $RC_CONFIG_DIR/plugins/managesieve
         cp -f $HESTIA_INSTALL_DIR/roundcube/plugins/config_managesieve.inc.php $RC_CONFIG_DIR/plugins/managesieve/config.inc.php
-        ln -s $RC_CONFIG_DIR/plugins/managesieve/config.inc.php $RC_INSTALL_DIR/plugins/managesieve/config.inc.php\
+        ln -s $RC_CONFIG_DIR/plugins/managesieve/config.inc.php $RC_INSTALL_DIR/plugins/managesieve/config.inc.php
         chown -R root:www-data $RC_CONFIG_DIR/
         chmod 751 -R $RC_CONFIG_DIR
         chmod 644 $RC_CONFIG_DIR/*.php

+ 3 - 3
install/hst-install.sh

@@ -9,7 +9,7 @@
 # Currently Supported Operating Systems:
 #
 # Debian 9, 10, 11
-# Ubuntu 18.04, 20.04
+# Ubuntu 18.04, 20.04, 22.04
 #
 # ======================================================== #
 
@@ -66,7 +66,7 @@ no_support_message(){
     echo "Hestia Control Panel. Officially supported releases:"
     echo "****************************************************"
     echo "  Debian 9, 10, 11"
-    echo "  Ubuntu 18.04, 20.04 LTS"
+    echo "  Ubuntu 18.04, 20.04, 22.04 LTS"
     echo ""
     exit 1;
 }
@@ -103,7 +103,7 @@ check_wget_curl(){
 
 # Check for supported operating system before proceeding with download
 # of OS-specific installer, and throw error message if unsupported OS detected.
-if [[ "$release" =~ ^(9|10|11|18.04|20.04)$ ]]; then
+if [[ "$release" =~ ^(9|10|11|18.04|20.04|22.04)$ ]]; then
     check_wget_curl $*
 else
     no_support_message