Skip to content

Commit c415148

Browse files
committed
Merge branch 'staging/1.4.5' into main
2 parents 9b836a0 + 487edcd commit c415148

File tree

8 files changed

+29
-6
lines changed

8 files changed

+29
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [1.4.5] - Service release
5+
6+
### Bugfixes
7+
8+
- Revert #1943 and rework it to fix possible errors occuring on v-rebuild-cron-jobs.
9+
- Fixed #1956 to prevent reset of defined webmail client.
10+
411
## [1.4.4] - Service release
512

613
### Features

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[Hestia Control Panel](https://www.hestiacp.com/)
44
==================================================
5-
**Latest stable release:** Version 1.4.4 | [View Changelog](https://github.com/hestiacp/hestiacp/blob/release/CHANGELOG.md)<br>
5+
**Latest stable release:** Version 1.4.5 | [View Changelog](https://github.com/hestiacp/hestiacp/blob/release/CHANGELOG.md)<br>
66

77
**Web:** [www.hestiacp.com](https://www.hestiacp.com/)<br>
88
**Documentation:** [docs.hestiacp.com](https://docs.hestiacp.com/)<br>

func/main.sh

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -610,11 +610,20 @@ sync_cron_jobs() {
610610
else
611611
crontab="/var/spool/cron/$user"
612612
fi
613-
>$crontab
613+
614+
# remove file if exists
615+
if [ -e "$crontab" ]; then
616+
rm -f $crontab
617+
fi
618+
619+
# touch new crontab file
620+
touch $crontab
621+
614622
if [ "$CRON_REPORTS" = 'yes' ]; then
615623
echo "MAILTO=$CONTACT" > $crontab
616624
echo 'CONTENT_TYPE="text/plain; charset=utf-8"' >> $crontab
617625
fi
626+
618627
while read line; do
619628
parse_object_kv_list "$line"
620629
if [ "$SUSPENDED" = 'no' ]; then

func/rebuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ rebuild_mail_domain_conf() {
590590
fi
591591

592592
# Webamil client
593-
if [ "$WEBAMIL" = '' ]; then
593+
if [ "$WEBMAIL" = '' ]; then
594594
$HESTIA/bin/v-add-mail-domain-webmail $user $domain 'roundcube' 'no'
595595
fi
596596

install/hst-install-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ HESTIA_INSTALL_DIR="$HESTIA/install/deb"
2323
VERBOSE='no'
2424

2525
# Define software versions
26-
HESTIA_INSTALL_VER='1.4.4'
26+
HESTIA_INSTALL_VER='1.4.5'
2727
pma_v='5.1.1'
2828
rc_v="1.4.11"
2929
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0")

install/hst-install-ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ HESTIA_INSTALL_DIR="$HESTIA/install/deb"
2323
VERBOSE='no'
2424

2525
# Define software versions
26-
HESTIA_INSTALL_VER='1.4.4'
26+
HESTIA_INSTALL_VER='1.4.5'
2727
pma_v='5.1.1'
2828
rc_v="1.4.11"
2929
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0")

install/upgrade/versions/1.4.5.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
# Hestia Control Panel upgrade script for target version 1.4.5
4+
5+
#######################################################################################
6+
####### Place additional commands below. #######
7+
#######################################################################################

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.4.4
4+
Version: 1.4.5
55
Section: admin
66
Maintainer: HestiaCP <info@hestiacp.com>
77
Homepage: https://www.hestiacp.com

0 commit comments

Comments
 (0)