|
|
@@ -6,25 +6,47 @@ function version_ge(){ test "$(printf '%s\n' "$@" | sort -V | head -n 1)" != "$1
|
|
|
# Set new version number
|
|
|
NEW_VERSION="1.0.1"
|
|
|
|
|
|
-# Set phpMyAdmin version for upgrade
|
|
|
-pma_v='4.9.0.1'
|
|
|
|
|
|
-# Set backup folder
|
|
|
-HESTIA_BACKUP="/root/hst_upgrade/$(date +%d%m%Y%H%M)"
|
|
|
-
|
|
|
-# Set installation source folder
|
|
|
-hestiacp="$HESTIA/install/deb"
|
|
|
|
|
|
# Load hestia.conf
|
|
|
source /usr/local/hestia/conf/hestia.conf
|
|
|
|
|
|
-####### Place additional commands below. #######
|
|
|
+########################################################################################################
|
|
|
+####### Place additional commands below. #######
|
|
|
+########################################################################################################
|
|
|
|
|
|
-# Back up old template files and install the latest versions
|
|
|
-if [ -d $HESTIA/data/templates/ ]; then
|
|
|
- echo "(*) Updating and rebuild web templates..."
|
|
|
- cp -rf $HESTIA/data/templates $HESTIA_BACKUP/templates/
|
|
|
- $HESTIA/bin/v-update-web-templates
|
|
|
+# Add amd64 to repositories to prevent notifications - https://goo.gl/hmsSV7
|
|
|
+if ! grep -q 'arch=amd64' /etc/apt/sources.list.d/nginx.list; then
|
|
|
+ sed -i s/"deb "/"deb [arch=amd64] "/g /etc/apt/sources.list.d/nginx.list
|
|
|
+fi
|
|
|
+if ! grep -q 'arch=amd64' /etc/apt/sources.list.d/mariadb.list; then
|
|
|
+ sed -i s/"deb "/"deb [arch=amd64] "/g /etc/apt/sources.list.d/mariadb.list
|
|
|
+fi
|
|
|
+
|
|
|
+# Add a general group for normal users created by Hestia
|
|
|
+echo "(*) Verifying ACLs and hardening user permissions..."
|
|
|
+if [ -z "$(grep ^hestia-users: /etc/group)" ]; then
|
|
|
+ groupadd --system "hestia-users"
|
|
|
+fi
|
|
|
+
|
|
|
+# Make sure non-admin users belong to correct Hestia group
|
|
|
+for user in `ls /usr/local/hestia/data/users/`; do
|
|
|
+ if [ "$user" != "admin" ]; then
|
|
|
+ usermod -a -G "hestia-users" "$user"
|
|
|
+ setfacl -m "u:$user:r-x" "$HOMEDIR/$user"
|
|
|
+
|
|
|
+ # Update FTP users groups membership
|
|
|
+ uid=$(id -u $user)
|
|
|
+ for ftp_user in $(cat /etc/passwd | grep -v "^$user:" | grep "^$user.*:$uid:$uid:" | cut -d ":" -f1); do
|
|
|
+ usermod -a -G "hestia-users" "$ftp_user"
|
|
|
+ done
|
|
|
+ fi
|
|
|
+ setfacl -m "g:hestia-users:---" "$HOMEDIR/$user"
|
|
|
+done
|
|
|
+
|
|
|
+# Fix named rule for AppArmor - https://goo.gl/SPqHdq
|
|
|
+if [ "$DNS_SYSTEM" = 'bind9' ] && [ ! -f /etc/apparmor.d/local/usr.sbin.named ]; then
|
|
|
+ echo "/home/** rwm," >> /etc/apparmor.d/local/usr.sbin.named 2> /dev/null
|
|
|
fi
|
|
|
|
|
|
# Update Apache and Nginx configuration to support new file structure
|
|
|
@@ -62,10 +84,250 @@ if [ ! -e /etc/ssl/dhparam.pem ]; then
|
|
|
sed -i "/add_header X-Frame-Options SAMEORIGIN;/d" /etc/nginx/nginx.conf
|
|
|
sed -i "/add_header X-Content-Type-Options nosniff;/d" /etc/nginx/nginx.conf
|
|
|
fi
|
|
|
+fi
|
|
|
+
|
|
|
+# Back up old template files and install the latest versions
|
|
|
+if [ -d $HESTIA/data/templates/ ]; then
|
|
|
+ echo "(*) Updating default templates and packages..."
|
|
|
+ cp -rf $HESTIA/data/templates $HESTIA_BACKUP/templates/
|
|
|
+ $HESTIA/bin/v-update-web-templates
|
|
|
+ $HESTIA/bin/v-update-dns-templates
|
|
|
+ $HESTIA/bin/v-update-mail-templates
|
|
|
+fi
|
|
|
+
|
|
|
+# Back up default package and install latest version
|
|
|
+if [ -d $HESTIA/data/packages/ ]; then
|
|
|
+ cp -f $HESTIA/data/packages/default.pkg $HESTIA_BACKUP/packages/
|
|
|
+fi
|
|
|
+
|
|
|
+# Remove old Office 365 template as there is a newer version with an updated name
|
|
|
+if [ -f $HESTIA/data/templates/dns/o365.tpl ]; then
|
|
|
+ rm -f $HESTIA/data/templates/dns/o365.tpl
|
|
|
+fi
|
|
|
+
|
|
|
+# Back up and remove default index.html if it exists
|
|
|
+if [ -f /var/www/html/index.html ]; then
|
|
|
+ mv /var/www/html/index.html $HESTIA_BACKUP/templates/
|
|
|
+fi
|
|
|
+
|
|
|
+# Configure default success page and set permissions on CSS, JavaScript, and Font dependencies for unassigned hosts
|
|
|
+if [ ! -d /var/www/html ]; then
|
|
|
+ mkdir -p /var/www/html/
|
|
|
+fi
|
|
|
+
|
|
|
+if [ ! -d /var/www/document_errors/ ]; then
|
|
|
+ mkdir -p /var/www/document_errors/
|
|
|
+fi
|
|
|
+
|
|
|
+cp -rf $HESTIA/install/deb/templates/web/unassigned/* /var/www/html/
|
|
|
+cp -rf $HESTIA/install/deb/templates/web/skel/document_errors/* /var/www/document_errors/
|
|
|
+chmod 644 /var/www/html/*
|
|
|
+chmod 644 /var/www/document_errors/*
|
|
|
+
|
|
|
+# Remove old default asset files from existing domains based on checksum
|
|
|
+for user in `ls /usr/local/hestia/data/users/`; do
|
|
|
+ USER_DATA=$HESTIA/data/users/$user
|
|
|
+ for domain in $($BIN/v-list-web-domains $user plain |cut -f 1); do
|
|
|
+ WEBFOLDER="/home/$user/web/$domain/public_html"
|
|
|
+ folderchecksum=$(find "$WEBFOLDER/css" "$WEBFOLDER/js" "$WEBFOLDER/webfonts" -type f -print0 2>/dev/null |sort -z |xargs -r0 cat |md5sum |cut -d" " -f1)
|
|
|
+ if [ "$folderchecksum" = "926feacc51384fe13598631f9d1360c3" ]; then
|
|
|
+ echo "(*) Removing old default asset files from: $domain..."
|
|
|
+ rm -rf "$WEBFOLDER/css" "$WEBFOLDER/js" "$WEBFOLDER/webfonts"
|
|
|
+ fi
|
|
|
+ unset folderchecksum
|
|
|
+ unset WEBFOLDER
|
|
|
+ done
|
|
|
+done
|
|
|
+folderchecksum=$(find /var/www/html/css /var/www/html/js /var/www/html/webfonts -type f -print0 2>/dev/null |sort -z |xargs -r0 cat |md5sum |cut -d" " -f1)
|
|
|
+if [ "$folderchecksum" = "d148d5173e5e4162d7af0a60585392cb" ]; then
|
|
|
+ rm -rf /var/www/html/css /var/www/html/js /var/www/html/webfonts
|
|
|
+fi
|
|
|
+unset folderchecksum
|
|
|
+
|
|
|
+# Correct permissions for DNS server cache
|
|
|
+if [ -d "/var/cache/bind" ]; then
|
|
|
+ chown bind:bind /var/cache/bind
|
|
|
+fi
|
|
|
+
|
|
|
+# Add unassigned hosts configuration to Nginx and Apache
|
|
|
+for ipaddr in $(ls /usr/local/hestia/data/ips/ 2>/dev/null); do
|
|
|
+
|
|
|
+ web_conf="/etc/$WEB_SYSTEM/conf.d/$ipaddr.conf"
|
|
|
+ rm -f $web_conf
|
|
|
+
|
|
|
+ if [ "$WEB_SYSTEM" = "apache2" ]; then
|
|
|
+ echo "(*) Adding unassigned hosts configuration to Apache..."
|
|
|
+ if [ -z "$(/usr/sbin/apache2 -v | grep Apache/2.4)" ]; then
|
|
|
+ echo "NameVirtualHost $ipaddr:$WEB_PORT" > $web_conf
|
|
|
+ fi
|
|
|
+ echo "Listen $ipaddr:$WEB_PORT" >> $web_conf
|
|
|
+ cat $HESTIA/install/deb/apache2/unassigned.conf >> $web_conf
|
|
|
+ sed -i 's/directIP/'$ipaddr'/g' $web_conf
|
|
|
+ sed -i 's/directPORT/'$WEB_PORT'/g' $web_conf
|
|
|
+
|
|
|
+ if [ "$WEB_SSL" = 'mod_ssl' ]; then
|
|
|
+ if [ -z "$(/usr/sbin/apache2 -v | grep Apache/2.4)" ]; then
|
|
|
+ sed -i "1s/^/NameVirtualHost $ipaddr:$WEB_SSL_PORT\n/" $web_conf
|
|
|
+ fi
|
|
|
+ sed -i "1s/^/Listen $ipaddr:$WEB_SSL_PORT\n/" $web_conf
|
|
|
+ sed -i 's/directSSLPORT/'$WEB_SSL_PORT'/g' $web_conf
|
|
|
+ fi
|
|
|
+
|
|
|
+ elif [ "$WEB_SYSTEM" = "nginx" ]; then
|
|
|
+ cp -f $HESTIA/install/deb/nginx/unassigned.inc $web_conf
|
|
|
+ sed -i 's/directIP/'$ipaddr'/g' $web_conf
|
|
|
+ fi
|
|
|
|
|
|
- # Restart Nginx service
|
|
|
- systemctl restart nginx >/dev/null 2>&1
|
|
|
+ if [ "$PROXY_SYSTEM" = "nginx" ]; then
|
|
|
+ echo "(*) Adding unassigned hosts configuration to Nginx..."
|
|
|
+ cat $WEBTPL/$PROXY_SYSTEM/proxy_ip.tpl |\
|
|
|
+ sed -e "s/%ip%/$ipaddr/g" \
|
|
|
+ -e "s/%web_port%/$WEB_PORT/g" \
|
|
|
+ -e "s/%proxy_port%/$PROXY_PORT/g" \
|
|
|
+ > /etc/$PROXY_SYSTEM/conf.d/$ipaddr.conf
|
|
|
+ fi
|
|
|
+done
|
|
|
+
|
|
|
+# Cleanup php session files not changed in the last 7 days (60*24*7 minutes)
|
|
|
+if [ ! -f /etc/cron.daily/php-session-cleanup ]; then
|
|
|
+ echo "(*) Configuring PHP session cleanup..."
|
|
|
+ echo '#!/bin/sh' > /etc/cron.daily/php-session-cleanup
|
|
|
+ echo "find -O3 /home/*/tmp/ -ignore_readdir_race -depth -mindepth 1 -name 'sess_*' -type f -cmin '+10080' -delete > /dev/null 2>&1" >> /etc/cron.daily/php-session-cleanup
|
|
|
+ echo "find -O3 $HESTIA/data/sessions/ -ignore_readdir_race -depth -mindepth 1 -name 'sess_*' -type f -cmin '+10080' -delete > /dev/null 2>&1" >> /etc/cron.daily/php-session-cleanup
|
|
|
fi
|
|
|
+chmod 755 /etc/cron.daily/php-session-cleanup
|
|
|
|
|
|
+# Fix empty pool error message for MultiPHP
|
|
|
+php_versions=$(ls /etc/php/*/fpm -d 2>/dev/null |wc -l)
|
|
|
+if [ "$php_versions" -gt 1 ]; then
|
|
|
+ for v in $(ls /etc/php/); do
|
|
|
+ if [ ! -d "/etc/php/$v/fpm/pool.d/" ]; then
|
|
|
+ continue
|
|
|
+ fi
|
|
|
+ echo "(*) Updating Multi-PHP configuration..."
|
|
|
+ cp -f $hestiacp/php-fpm/dummy.conf /etc/php/$v/fpm/pool.d/
|
|
|
+ v1=$(echo "$v" | sed -e 's/[.]//')
|
|
|
+ sed -i "s/9999/99$v1/g" /etc/php/$v/fpm/pool.d/dummy.conf
|
|
|
+ done
|
|
|
+fi
|
|
|
|
|
|
+# Remove obsolete firewall ports.conf file if it exists
|
|
|
+if [ -f /usr/local/hestia/data/firewall/ports.conf ]; then
|
|
|
+ rm -f /usr/local/hestia/data/firewall/ports.conf
|
|
|
+fi
|
|
|
+
|
|
|
+# Move ClamAV daemon settings page to correct location if necessary
|
|
|
+if [ ! -d /usr/local/hestia/web/edit/server/clamav-daemon ]; then
|
|
|
+ mv /usr/local/hestia/web/edit/server/clamd /usr/local/web/edit/server/clamav-daemon
|
|
|
+fi
|
|
|
+
|
|
|
+# Remove old OS-specific installation files if they exist to free up space
|
|
|
+if [ -d $HESTIA/install/ubuntu ]; then
|
|
|
+ echo "(*) Removing old Hestia Control Panel installation files for Ubuntu..."
|
|
|
+ rm -rf $HESTIA/install/ubuntu
|
|
|
+fi
|
|
|
+if [ -d $HESTIA/install/debian ]; then
|
|
|
+ echo "(*) Removing old Hestia Control Panel installation files for Debian..."
|
|
|
+ rm -rf $HESTIA/install/debian
|
|
|
+fi
|
|
|
+
|
|
|
+# Update Dovecot configuration to support per-domain SSL
|
|
|
+echo "(*) Updating Dovecot IMAP/POP server configuration..."
|
|
|
+if [ -f /etc/dovecot/conf.d/15-mailboxes.conf ]; then
|
|
|
+ mv /etc/dovecot/conf.d/15-mailboxes.conf $HESTIA_BACKUP/conf/
|
|
|
+fi
|
|
|
+if [ -f /etc/dovecot/dovecot.conf ]; then
|
|
|
+ # Update Dovecot configuration and restart Dovecot service
|
|
|
+ mv /etc/dovecot/dovecot.conf $HESTIA_BACKUP/conf/
|
|
|
+ cp -f $HESTIA/install/deb/dovecot/dovecot.conf /etc/dovecot/dovecot.conf
|
|
|
+ systemctl restart dovecot
|
|
|
+ sleep 0.5
|
|
|
+fi
|
|
|
+
|
|
|
+# Update Exim SMTP configuration to support per-domain SSL
|
|
|
+if [ -f /etc/exim4/exim4.conf.template ]; then
|
|
|
+ echo "(*) Updating Exim SMTP server configuration..."
|
|
|
+ mv /etc/exim4/exim4.conf.template $HESTIA_BACKUP/conf/
|
|
|
+ cp -f $HESTIA/install/deb/exim/exim4.conf.template /etc/exim4/exim4.conf.template
|
|
|
+ # Reconfigure spam filter and virus scanning
|
|
|
+ if [ ! -z "$ANTISPAM_SYSTEM" ]; then
|
|
|
+ sed -i "s/#SPAM/SPAM/g" /etc/exim4/exim4.conf.template
|
|
|
+ sed -i "s/#SPAM_SCORE/SPAM_SCORE/g" /etc/exim4/exim4.conf.template
|
|
|
+ fi
|
|
|
+ if [ ! -z "$ANTIVIRUS_SYSTEM" ]; then
|
|
|
+ sed -i "s/#CLAMD/CLAMD/g" /etc/exim4/exim4.conf.template
|
|
|
+ fi
|
|
|
+fi
|
|
|
|
|
|
+# Add IMAP system variable to configuration if Dovecot is installed
|
|
|
+if [ -z "$IMAP_SYSTEM" ]; then
|
|
|
+ if [ -f /usr/bin/dovecot ]; then
|
|
|
+ echo "(*) Adding missing IMAP_SYSTEM variable to hestia.conf..."
|
|
|
+ echo "IMAP_SYSTEM = 'dovecot'" >> $HESTIA/conf/hestia.conf
|
|
|
+ fi
|
|
|
+fi
|
|
|
+
|
|
|
+# Add webmail alias variable to system configuration if non-existent
|
|
|
+imap_check=$(cat $HESTIA/conf/hestia.conf | grep IMAP_SYSTEM)
|
|
|
+if [ ! -z "$imap_check" ]; then
|
|
|
+ WEBMAIL_ALIAS_CHECK=$(cat $HESTIA/conf/hestia.conf | grep WEBMAIL_ALIAS)
|
|
|
+ if [ -z "$WEBMAIL_ALIAS_CHECK" ]; then
|
|
|
+ echo "(*) Adding global webmail alias to system configuration..."
|
|
|
+ sed -i "/WEBMAIL_ALIAS/d" $HESTIA/conf/hestia.conf
|
|
|
+ echo "WEBMAIL_ALIAS='webmail'" >> $HESTIA/conf/hestia.conf
|
|
|
+ fi
|
|
|
+fi
|
|
|
+
|
|
|
+# Set Purge to false in Roundcube configuration - https://goo.gl/3Nja3u
|
|
|
+echo "(*) Updating Roundcube configuration..."
|
|
|
+if [ -f /etc/roundcube/config.inc.php ]; then
|
|
|
+ sed -i "s/\['flag_for_deletion'] = 'Purge';/\['flag_for_deletion'] = false;/gI" /etc/roundcube/config.inc.php
|
|
|
+fi
|
|
|
+if [ -f /etc/roundcube/defaults.inc.php ]; then
|
|
|
+ sed -i "s/\['flag_for_deletion'] = 'Purge';/\['flag_for_deletion'] = false;/gI" /etc/roundcube/defaults.inc.php
|
|
|
+fi
|
|
|
+if [ -f /etc/roundcube/main.inc.php ]; then
|
|
|
+ sed -i "s/\['flag_for_deletion'] = 'Purge';/\['flag_for_deletion'] = false;/gI" /etc/roundcube/main.inc.php
|
|
|
+fi
|
|
|
+if [ -d "/etc/roundcube" ]; then
|
|
|
+ chmod 640 /etc/roundcube/debian-db*
|
|
|
+ chown root:www-data /etc/roundcube/debian-db*
|
|
|
+fi
|
|
|
+
|
|
|
+# Remove Webalizer and set AWStats as default
|
|
|
+WEBALIAZER_CHECK=$(cat $HESTIA/conf/hestia.conf | grep webalizer)
|
|
|
+if [ ! -z "$WEBALIZER_CHECK" ]; then
|
|
|
+ echo "(*) Removing Webalizer and setting AWStats as default web statistics backend..."
|
|
|
+ apt purge webalizer -y > /dev/null 2>&1
|
|
|
+ sed -i "s/STATS_SYSTEM='webalizer,awstats'/STATS_SYSTEM='awstats'/g" $HESTIA/conf/hestia.conf
|
|
|
+fi
|
|
|
+
|
|
|
+# Enable SFTP chroot jail capabilities
|
|
|
+$HESTIA/bin/v-add-sys-sftp-jail no
|
|
|
+
|
|
|
+# Enable SFTP subsystem for SSH
|
|
|
+sftp_subsys_enabled=$(grep -iE "^#?.*subsystem.+(sftp )?sftp-server" /etc/ssh/sshd_config)
|
|
|
+if [ ! -z "$sftp_subsys_enabled" ]; then
|
|
|
+ echo "(*) Updating SFTP subsystem configuration..."
|
|
|
+ sed -i -E "s/^#?.*Subsystem.+(sftp )?sftp-server/Subsystem sftp internal-sftp/g" /etc/ssh/sshd_config
|
|
|
+fi
|
|
|
+
|
|
|
+# Remove and migrate obsolete object keys
|
|
|
+for user in `ls /usr/local/hestia/data/users/`; do
|
|
|
+ USER_DATA=$HESTIA/data/users/$user
|
|
|
+
|
|
|
+ # Web keys
|
|
|
+ for domain in $($BIN/v-list-web-domains $user plain |cut -f 1); do
|
|
|
+ obskey=$(get_object_value 'web' 'DOMAIN' "$domain" '$FORCESSL')
|
|
|
+ if [ ! -z "$obskey" ]; then
|
|
|
+ echo "(*) Updating HTTP-to-HTTPS redirect configuration for $domain..."
|
|
|
+ update_object_value 'web' 'DOMAIN' "$domain" '$FORCESSL' ''
|
|
|
+
|
|
|
+ # copy value under new key name
|
|
|
+ add_object_key "web" 'DOMAIN' "$domain" 'SSL_FORCE' 'SSL_HOME'
|
|
|
+ update_object_value 'web' 'DOMAIN' "$domain" '$SSL_FORCE' "$obskey"
|
|
|
+ fi
|
|
|
+ unset FORCESSL
|
|
|
+ done
|
|
|
+ sed -i "s/\sFORCESSL=''//g" $USER_DATA/web.conf
|
|
|
+done
|