1.1.1.sh 1.0 KB

1234567891011121314151617181920
  1. #!/bin/sh
  2. # Hestia Control Panel upgrade script for target version 1.1.1
  3. #######################################################################################
  4. ####### Place additional commands below. #######
  5. #######################################################################################
  6. # Remove 5s delay when sending mail through exim4
  7. if [ -e "/etc/exim4/exim4.conf.template" ]; then
  8. echo "(*) Updating exim4 configuration..."
  9. sed -i "s|rfc1413_query_timeout = 5s|rfc1413_query_timeout = 0s|g" /etc/exim4/exim4.conf.template
  10. fi
  11. # Fix phpMyAdmin blowfish and tmp directory issues
  12. if [ -e "/usr/share/phpmyadmin/libraries/vendor_config.php" ]; then
  13. echo "(*) Updating phpMyAdmin configuration..."
  14. sed -i "s|define('CONFIG_DIR', ROOT_PATH);|define('CONFIG_DIR', '/etc/phpmyadmin/');|" /usr/share/phpmyadmin/libraries/vendor_config.php
  15. sed -i "s|define('TEMP_DIR', ROOT_PATH . 'tmp/');|define('TEMP_DIR', '/var/lib/phpmyadmin/tmp/');|" /usr/share/phpmyadmin/libraries/vendor_config.php
  16. fi