We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9b690d commit 7516214Copy full SHA for 7516214
install/upgrade/versions/latest.sh
@@ -105,4 +105,11 @@ fi
105
if [ -e "$HESTIA/data/templates/dns/office365.tpl" ]; then
106
echo "(*) Updating DNS template for Office 365..."
107
cp -f $HESTIA/install/deb/templates/dns/office365.tpl $HESTIA/data/templates/dns/office365.tpl
108
-fi
+fi
109
+
110
+# Ensure that backup compression level is correctly set
111
+GZIP_LVL_CHECK=$(cat $HESTIA/conf/hestia.conf | grep BACKUP_GZIP)
112
+if [ -z "$GZIP_LVL_CHECK" ]; then
113
+ echo "(*) Updating backup compression level variable..."
114
+ $BIN/v-change-sys-config-value "BACKUP_GZIP" '9'
115
0 commit comments