Skip to content

Commit 7212c17

Browse files
author
Kristan Kenney
committed
Add missing status messages to upgrade script for 1.1.0
1 parent 78ad40b commit 7212c17

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

install/upgrade/versions/latest.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ fi
140140

141141
# Installing postgresql repo
142142
if [ -e "/etc/postgresql" ]; then
143+
echo "(*) Enabling native PostgreSQL APT repository..."
143144
osname="$(cat /etc/os-release | grep "^ID\=" | sed "s/ID\=//g")"
144145
if [ "$osname" = "ubuntu" ]; then
145146
codename="$(lsb_release -s -c)"
@@ -165,7 +166,7 @@ fi
165166
if [ -e "/etc/nginx/nginx.conf" ]; then
166167
nginx_tls_check=$(grep TLSv1.1 /etc/nginx/nginx.conf)
167168
if [ ! -z "$nginx_tls_check" ]; then
168-
echo "(*) Hardening nginx configuration, drop TLSv1.1 support..."
169+
echo "(*) Updating nginx security settings - disabling TLS v1.1..."
169170
sed -i 's/TLSv1.1 //g' /etc/nginx/nginx.conf
170171
fi
171172
fi
@@ -194,7 +195,7 @@ chown root:root /var/log/$WEB_SYSTEM/domains/$WEBMAIL_ALIAS* > /dev/null 2>&1
194195

195196
# Enable IMAP/POP3 quota information
196197
if [ "$IMAP_SYSTEM" = "dovecot" ]; then
197-
echo "(*) Enabling IMAP quota information reporting ..."
198+
echo "(*) Enabling IMAP quota information reporting..."
198199
if [ -e /etc/dovecot/conf.d/20-pop3.conf ]; then
199200
cp -f $HESTIA/install/deb/dovecot/conf.d/20-pop3.conf /etc/dovecot/conf.d/20-pop3.conf
200201
fi
@@ -209,7 +210,7 @@ fi
209210
# Trigger multiphp legacy migration script
210211
num_php_versions=$(ls -d /etc/php/*/fpm/pool.d 2>/dev/null |wc -l)
211212
if [ "$num_php_versions" -gt 1 ] && [ -z "$WEB_BACKEND" ]; then
212-
echo "(*) Enabling modular Multi-PHP backend ..."
213+
echo "(*) Enabling modular Multi-PHP backend..."
213214
cp -rf $HESTIA/data/templates/web $HESTIA_BACKUP/templates/web
214215
bash $HESTIA/install/upgrade/manual/migrate_multiphp.sh > /dev/null 2>&1
215-
fi
216+
fi

0 commit comments

Comments
 (0)