Skip to content

Commit 6669c70

Browse files
authored
Update versions + Fix bug in v-restore-user (hestiacp#3369)
* Update versions 1.7.1~alpha for main branch * Fix bug in v-restore-user grep non such file or directory * Fix text upgrade message
1 parent 6a32b16 commit 6669c70

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

bin/v-restore-user

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,11 +350,11 @@ if [ "$web" != 'no' ] && [ -n "$WEB_SYSTEM" ]; then
350350
if [[ "$file" == *.ca ]] || [[ "$file" == *.crt ]] || [[ "$file" == *.key ]] || [[ "$file" == *.pem ]] || [[ "$file" == *.conf ]]; then
351351
continue
352352
fi
353-
if grep "fastcgi_pass" file; then
353+
if grep "fastcgi_pass" "$file"; then
354354
# Do not allow to run php under a different user
355355
continue
356356
fi
357-
filename=$(basename $file)
357+
filename=$(basename "$file")
358358
cp -f "$file" "$HOMEDIR/$user/conf/web/$domain/$filename"
359359
done
360360

func/upgrade.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ upgrade_b2_tool() {
551551
}
552552

553553
upgrade_cloudflare_ip() {
554-
echo "[ * ] Update Cloudflare IP"
554+
echo "[ * ] Update Cloudflare IP..."
555555
# https://github.com/ergin/nginx-cloudflare-real-ip/
556556
CLOUDFLARE_FILE_PATH='/etc/nginx/conf.d/cloudflare.inc'
557557
echo "#Cloudflare" > $CLOUDFLARE_FILE_PATH

install/hst-install-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ HESTIA_COMMON_DIR="$HESTIA/install/common"
3232
VERBOSE='no'
3333

3434
# Define software versions
35-
HESTIA_INSTALL_VER='1.7.0'
35+
HESTIA_INSTALL_VER='1.7.1~alpha'
3636
# Dependencies
3737
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0" "8.1" "8.2")
3838
fpm_v="8.1"

install/hst-install-ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ HESTIA_COMMON_DIR="$HESTIA/install/common"
3232
VERBOSE='no'
3333

3434
# Define software versions
35-
HESTIA_INSTALL_VER='1.7.0'
35+
HESTIA_INSTALL_VER='1.7.1~alpha'
3636
# Dependencies
3737
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0" "8.1" "8.2")
3838
fpm_v="8.1"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "hestia",
33
"private": true,
4-
"version": "1.7.0",
4+
"version": "1.7.1~alpha",
55
"description": "An open-source Linux web server control panel.",
66
"repository": "https://github.com/hestiacp/hestiacp",
77
"license": "GPL-3.0-or-later",

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

0 commit comments

Comments
 (0)