Skip to content

Commit caa9faa

Browse files
author
Kristan Kenney
committed
Bump development version to v1.1.2
1 parent cdb1e40 commit caa9faa

File tree

6 files changed

+33
-18
lines changed

6 files changed

+33
-18
lines changed

func/upgrade.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,13 @@ upgrade_start_routine() {
154154

155155
# Upgrade to Version 1.1.1
156156
if [ $VERSION = "1.1.0" ]; then
157+
source $HESTIA/install/upgrade/versions/latest.sh
158+
VERSION="1.1.1"
159+
upgrade_refresh_config
160+
fi
161+
162+
# Upgrade to Version 1.1.2
163+
if [ $VERSION = "1.1.1" ]; then
157164
source $HESTIA/install/upgrade/versions/latest.sh
158165
VERSION="$new_version"
159166
upgrade_refresh_config

install/hst-install-debian.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ echo ' | _ | __/\__ \ |_| | (_| | |___| __/ '
437437
echo ' |_| |_|\___||___/\__|_|\__,_|\____|_| '
438438
echo
439439
echo ' Hestia Control Panel'
440-
echo ' v1.1.1'
440+
echo ' v1.1.2'
441441
echo -e "\n"
442442
echo "===================================================================="
443443
echo -e "\n"
@@ -1075,7 +1075,7 @@ echo "BACKUP_SYSTEM='local'" >> $HESTIA/conf/hestia.conf
10751075
echo "LANGUAGE='$lang'" >> $HESTIA/conf/hestia.conf
10761076

10771077
# Version & Release Branch
1078-
echo "VERSION='1.1.1'" >> $HESTIA/conf/hestia.conf
1078+
echo "VERSION='1.1.2'" >> $HESTIA/conf/hestia.conf
10791079
echo "RELEASE_BRANCH='release'" >> $HESTIA/conf/hestia.conf
10801080

10811081
# Installing hosting packages

install/hst-install-ubuntu.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ echo ' | _ | __/\__ \ |_| | (_| | |___| __/ '
399399
echo ' |_| |_|\___||___/\__|_|\__,_|\____|_| '
400400
echo
401401
echo ' Hestia Control Panel'
402-
echo ' v1.1.1'
402+
echo ' v1.1.2'
403403
echo -e "\n"
404404
echo "===================================================================="
405405
echo -e "\n"
@@ -1044,7 +1044,7 @@ echo "BACKUP_SYSTEM='local'" >> $HESTIA/conf/hestia.conf
10441044
echo "LANGUAGE='$lang'" >> $HESTIA/conf/hestia.conf
10451045

10461046
# Version & Release Branch
1047-
echo "VERSION='1.1.1'" >> $HESTIA/conf/hestia.conf
1047+
echo "VERSION='1.1.2'" >> $HESTIA/conf/hestia.conf
10481048
echo "RELEASE_BRANCH='release'" >> $HESTIA/conf/hestia.conf
10491049

10501050
# Installing hosting packages

install/upgrade/versions/latest.sh

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,8 @@
11
#!/bin/sh
22

3-
# Hestia Control Panel upgrade script for target version 1.1.1
3+
# Hestia Control Panel upgrade script for target version 1.1.2
44

55
#######################################################################################
66
####### Place additional commands below. #######
77
#######################################################################################
88

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

src/deb/hestia/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Source: hestia
22
Package: hestia
33
Priority: optional
4-
Version: 1.1.1
4+
Version: 1.1.2
55
Section: admin
66
Maintainer: HestiaCP <info@hestiacp.com>
77
Homepage: https://www.hestiacp.com

0 commit comments

Comments
 (0)