Skip to content

Commit fdd9e2c

Browse files
committed
Merge branch 'staging/1.5.7' into main
2 parents 29f810f + 3e2c1dd commit fdd9e2c

File tree

7 files changed

+50
-4
lines changed

7 files changed

+50
-4
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,28 @@ All notable changes to this project will be documented in this file.
55

66
### Bugfixes
77

8+
- Fixed an issue with apt update and public key missing
9+
10+
If you have to following error
11+
12+
```
13+
The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A189E93654F0B0E5
14+
```
15+
16+
Follow the following instructions
17+
18+
```
19+
rm /usr/share/keyrings/hestia-keyring.gpg
20+
mkdir /root/.gnupg/
21+
gpg --no-default-keyring --keyring /usr/share/keyrings/hestia-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys A189E93654F0B0E5
22+
```
23+
24+
After that run apt update && apt upgrade
25+
26+
## [1.5.6] - Service release
27+
28+
### Bugfixes
29+
830
- Fixed an issue with the installer. system.pkg didn't allow for a Web alias #2381
931
- Fixed an issue with upgrade script causing command to to be executed (https://forum.hestiacp.com/t/upgrading-to-1-5-5-error-line/5449/3)
1032

install/hst-install-debian.sh

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

3333
# Define software versions
34-
HESTIA_INSTALL_VER='1.5.6'
34+
HESTIA_INSTALL_VER='1.5.7'
3535
# Dependencies
3636
pma_v='5.1.2'
3737
rc_v="1.5.2"

install/hst-install-ubuntu.sh

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

3333
# Define software versions
34-
HESTIA_INSTALL_VER='1.5.6'
34+
HESTIA_INSTALL_VER='1.5.7'
3535
# Dependencies
3636
pma_v='5.1.2'
3737
rc_v="1.5.2"

install/upgrade/versions/1.5.5.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ done
2929

3030
echo "[ * ] Updating apt keyring configuration..."
3131

32+
mkdir /root/.gnupg
33+
3234
if [ ! -f "/usr/share/keyrings/nginx-keyring.gpg" ]; then
3335
# Get Architecture
3436
architecture="$(uname -m)"

install/upgrade/versions/1.5.6.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# Hestia Control Panel upgrade script for target version 1.5.5
3+
# Hestia Control Panel upgrade script for target version 1.5.6
44

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

install/upgrade/versions/1.5.7.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/bin/bash
2+
3+
# Hestia Control Panel upgrade script for target version 1.5.7
4+
5+
#######################################################################################
6+
####### Place additional commands below. #######
7+
#######################################################################################
8+
####### Pass through information to the end user in case of a issue or problem #######
9+
####### #######
10+
####### Use add_upgrade_message "My message here" to include a message #######
11+
####### in the upgrade notification email. Example: #######
12+
####### #######
13+
####### add_upgrade_message "My message here" #######
14+
####### #######
15+
####### You can use \n within the string to create new lines. #######
16+
#######################################################################################
17+
18+
upgrade_config_set_value 'UPGRADE_UPDATE_WEB_TEMPLATES' 'false'
19+
upgrade_config_set_value 'UPGRADE_UPDATE_DNS_TEMPLATES' 'false'
20+
upgrade_config_set_value 'UPGRADE_UPDATE_MAIL_TEMPLATES' 'false'
21+
upgrade_config_set_value 'UPGRADE_REBUILD_USERS' 'false'
22+
upgrade_config_set_value 'UPGRADE_UPDATE_FILEMANAGER_CONFIG' 'false'

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

0 commit comments

Comments
 (0)