Skip to content

Commit 61e59ad

Browse files
authored
Upgrade installer + Manual upgrade 10.4 to 10.5 (hestiacp#1219)
* Upgrade installer + Manual upgrade 10.4 to 10.5 * Update CHANGELOG.md
1 parent ca900ad commit 61e59ad

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ All notable changes to this project will be documented in this file.
1313
- Add support Proftpd TLS Support
1414
- Add the possibility to assign user "Administrators" rights on login. Replaces "root" login. Notifications are only send towards the "admin" account email
1515
- Updated translations system with the use of Gettext. Modified / Updated all translated strings
16+
- Updated MariaDB to 10.5 (Manual upgrade required install/upgrade/manual/upgrade_mariadb.sh)
1617

1718
## Bugfixes
1819
- Removed root login (root / root password )

install/hst-install-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ HESTIA_INSTALL_VER='1.3.0~beta'
2727
pma_v='5.0.2'
2828
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4")
2929
fpm_v="7.3"
30-
mariadb_v="10.4"
30+
mariadb_v="10.5"
3131

3232
if [ "$release" -eq 9 ]; then
3333
software="nginx apache2 apache2-utils apache2-suexec-custom

install/hst-install-ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ HESTIA_INSTALL_VER='1.3.0~beta'
2727
pma_v='5.0.2'
2828
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4")
2929
fpm_v="7.3"
30-
mariadb_v="10.4"
30+
mariadb_v="10.5"
3131

3232
# Defining software pack for all distros
3333
software="apache2 apache2.2-common apache2-suexec-custom apache2-utils

install/upgrade/manual/upgrade_mariadb.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/bin/bash
22

3-
# This script validates and upgrades the MariaDB version to 10.4
3+
# This script validates and upgrades the MariaDB version to 10.5
44

55
# Set MariaDB Target Version
6-
mariadb_v='10.4'
6+
mariadb_v='10.5'
77

88
# Load OS informations
99
source /etc/os-release
@@ -31,10 +31,10 @@ fi
3131
echo "Add new MariaDB repository..."
3232
apt="/etc/apt/sources.list.d/"
3333
if [ "$id" = "ubuntu" ]; then
34-
echo "deb [arch=amd64] http://ams2.mirrors.digitalocean.com/mariadb/repo/$mariadb_v/$ID $codename main" > $apt/mariadb.list
34+
echo "deb [arch=amd64] https://mirror.mva-n.net/mariadb/repo/$mariadb_v/$ID $codename main" > $apt/mariadb.list
3535
APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1 apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xF1656F24C74CD1D8 > /dev/null 2>&1
3636
else
37-
echo "deb [arch=amd64] http://ams2.mirrors.digitalocean.com/mariadb/repo/$mariadb_v/$ID $codename main" > $apt/mariadb.list
37+
echo "deb [arch=amd64] https://mirror.mva-n.net/mariadb/repo/$mariadb_v/$ID $codename main" > $apt/mariadb.list
3838
if [ "$id" = "jessie" ]; then
3939
APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1 apt-key adv --recv-keys --keyserver keyserver.ubuntu.com CBCB082A1BB943DB > /dev/null 2>&1
4040
else

0 commit comments

Comments
 (0)