Skip to content

Commit 33cbb70

Browse files
author
Kristan Kenney
authored
Merge pull request hestiacp#367 from hestiacp/bugfix-installer
Installer bugfixes - 1.00.1 hotfix release
2 parents 4cf01b8 + af696f1 commit 33cbb70

File tree

3 files changed

+8
-14
lines changed

3 files changed

+8
-14
lines changed

install/hst-install-debian.sh

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1067,8 +1067,8 @@ echo "BACKUP_SYSTEM='local'" >> $HESTIA/conf/hestia.conf
10671067
echo "LANGUAGE='$lang'" >> $HESTIA/conf/hestia.conf
10681068

10691069
# Version & Release Branch
1070-
echo "VERSION='0.10.0'" >> $HESTIA/conf/hestia.conf
1071-
echo "RELEASE='develop'" >> $HESTIA/conf/hestia.conf
1070+
echo "VERSION='1.00.0-190618'" >> $HESTIA/conf/hestia.conf
1071+
echo "RELEASE='master'" >> $HESTIA/conf/hestia.conf
10721072

10731073
# Installing hosting packages
10741074
cp -rf $hestiacp/packages $HESTIA/data/
@@ -1503,7 +1503,7 @@ fi
15031503
# Configure Roundcube #
15041504
#----------------------------------------------------------#
15051505

1506-
if [ "$exim" = 'yes' ] && [ "$mysql" = 'yes' ]; then
1506+
if [ "$dovecot" = 'yes' ] && [ "$mysql" = 'yes' ]; then
15071507
if [ "$apache" = 'yes' ]; then
15081508
cp -f $hestiacp/roundcube/apache.conf /etc/roundcube/
15091509
ln -s /etc/roundcube/apache.conf /etc/apache2/conf.d/roundcube.conf
@@ -1737,9 +1737,6 @@ service hestia start
17371737
check_result $? "hestia start failed"
17381738
chown admin:admin $HESTIA/data/sessions
17391739

1740-
# Adding cronjob for autoupdates
1741-
$HESTIA/bin/v-add-cron-hestia-autoupdate
1742-
17431740

17441741
#----------------------------------------------------------#
17451742
# Hestia Access Info #

install/hst-install-ubuntu.sh

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1031,8 +1031,8 @@ echo "BACKUP_SYSTEM='local'" >> $HESTIA/conf/hestia.conf
10311031
echo "LANGUAGE='$lang'" >> $HESTIA/conf/hestia.conf
10321032

10331033
# Version & Release Branch
1034-
echo "VERSION='0.10.0'" >> $HESTIA/conf/hestia.conf
1035-
echo "RELEASE='develop'" >> $HESTIA/conf/hestia.conf
1034+
echo "VERSION='1.00.0-190618'" >> $HESTIA/conf/hestia.conf
1035+
echo "RELEASE='master'" >> $HESTIA/conf/hestia.conf
10361036

10371037
# Installing hosting packages
10381038
cp -rf $hestiacp/packages $HESTIA/data/
@@ -1457,7 +1457,7 @@ fi
14571457
# Configure Roundcube #
14581458
#----------------------------------------------------------#
14591459

1460-
if [ "$exim" = 'yes' ] && [ "$mysql" = 'yes' ]; then
1460+
if [ "$dovecot" = 'yes' ] && [ "$mysql" = 'yes' ]; then
14611461
if [ "$apache" = 'yes' ]; then
14621462
cp -f $hestiacp/roundcube/apache.conf /etc/roundcube/
14631463
ln -s /etc/roundcube/apache.conf /etc/apache2/conf.d/roundcube.conf
@@ -1639,9 +1639,6 @@ service hestia start
16391639
check_result $? "hestia start failed"
16401640
chown admin:admin $HESTIA/data/sessions
16411641

1642-
# Adding cronjob for autoupdates
1643-
$HESTIA/bin/v-add-cron-hestia-autoupdate
1644-
16451642

16461643
#----------------------------------------------------------#
16471644
# Hestia Access Info #

install/upgrade/1.00.0-190618.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ release_branch_check=$(cat $HESTIA/conf/hestia.conf | grep RELEASE_BRANCH)
2121
if [ -z "$release_branch_check" ]; then
2222
echo "(*) Adding global release branch variable to system configuration..."
2323
sed -i "/RELEASE_BRANCH/d" $HESTIA/conf/hestia.conf
24-
echo "RELEASE_BRANCH='develop'" >> $HESTIA/conf/hestia.conf
24+
echo "RELEASE_BRANCH='master'" >> $HESTIA/conf/hestia.conf
2525
fi
2626

2727
# Load hestia.conf
@@ -76,7 +76,7 @@ echo ""
7676
# Set new version
7777
sed -i "/VERSION/d" $HESTIA/conf/hestia.conf
7878
# Set new branch variable
79-
echo "VERSION='0.10.0'" >> $HESTIA/conf/hestia.conf
79+
echo "VERSION='1.00.0-190618'" >> $HESTIA/conf/hestia.conf
8080

8181
# Update Apache and Nginx configuration to support new file structure
8282
if [ -f /etc/apache2/apache.conf ]; then

0 commit comments

Comments
 (0)