Skip to content

Commit bf1105d

Browse files
committed
Merge branch 'beta/1.4.11' into main
2 parents 9aaac65 + 11341c4 commit bf1105d

File tree

5 files changed

+10
-13
lines changed

5 files changed

+10
-13
lines changed

CHANGELOG.md

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

66
### Features
77

8+
- Add support for Debian 11 (Bullseye) #1611
9+
- Add support for openssl in hestia-php
810
- Replace old firewall system with systemd service / startup script #2064 @myrevery
911
- Add Quick installers for GravCMS, Docuwiki and Mediawiki (#2002) @PsychotherapistSam
1012

install/hst-install-debian.sh

Lines changed: 3 additions & 8 deletions
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.11~aplpha'
26+
HESTIA_INSTALL_VER='1.4.11~beta'
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")
@@ -646,12 +646,7 @@ echo
646646
# Installing Nginx repo
647647

648648
echo "[ * ] NGINX"
649-
if [ "$release" -eq 11 ]; then
650-
echo " Skip nginx repo, not available yet."
651-
echo "#deb [arch=$ARCH] https://nginx.org/packages/mainline/$VERSION/ $codename nginx" > $apt/nginx.list
652-
else
653-
echo "deb [arch=$ARCH] https://nginx.org/packages/mainline/$VERSION/ $codename nginx" > $apt/nginx.list
654-
fi
649+
echo "deb [arch=$ARCH] https://nginx.org/packages/mainline/$VERSION/ $codename nginx" > $apt/nginx.list
655650
apt-key adv --fetch-keys 'https://nginx.org/keys/nginx_signing.key' > /dev/null 2>&1
656651

657652
# Installing sury PHP repo
@@ -1598,7 +1593,7 @@ if [ "$exim" = 'yes' ]; then
15981593
gpasswd -a Debian-exim mail > /dev/null 2>&1
15991594
exim_version=$(exim4 --version | head -1 | awk '{print $3}' | cut -f -2 -d .);
16001595
if [ "$exim_version" = "4.94" ]; then
1601-
cp -f $HESTIA_INSTALL_DIR/exim/exim4.conf.4.94.template /etc/exim/exim4.conf.template
1596+
cp -f $HESTIA_INSTALL_DIR/exim/exim4.conf.4.94.template /etc/exim4/exim4.conf.template
16021597
else
16031598
cp -f $HESTIA_INSTALL_DIR/exim/exim4.conf.template /etc/exim4/
16041599
fi

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.11~alpha'
26+
HESTIA_INSTALL_VER='1.4.11~beta'
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.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# Currently Supported Operating Systems:
77
#
8-
# Debian 9, 10
8+
# Debian 9, 10, 11
99
# Ubuntu 18.04, 20.04
1010
#
1111

@@ -61,7 +61,7 @@ no_support_message(){
6161
echo "Your operating system (OS) is not supported by"
6262
echo "Hestia Control Panel. Officially supported releases:"
6363
echo "****************************************************"
64-
echo " Debian 9, 10"
64+
echo " Debian 9, 10 11"
6565
echo " Ubuntu 18.04, 20.04 LTS"
6666
echo ""
6767
exit 1;
@@ -99,7 +99,7 @@ check_wget_curl(){
9999

100100
# Check for supported operating system before proceeding with download
101101
# of OS-specific installer, and throw error message if unsupported OS detected.
102-
if [[ "$release" =~ ^(9|10|18.04|20.04)$ ]]; then
102+
if [[ "$release" =~ ^(9|10|11|18.04|20.04)$ ]]; then
103103
check_wget_curl $*
104104
else
105105
no_support_message

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

0 commit comments

Comments
 (0)