Skip to content

Commit fe0211c

Browse files
authored
Merge pull request hestiacp#1251 from hestiacp/fix/2020-10_issue_with_installers
Issue with installer + Modified bootstrap_install due switch default branch
2 parents 427fa67 + d9e4504 commit fe0211c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

install/hst-install-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1081,7 +1081,7 @@ echo "BACKUP_MODE='zstd'" >> $HESTIA/conf/hestia.conf
10811081
echo "LANGUAGE='$lang'" >> $HESTIA/conf/hestia.conf
10821082

10831083
# Login in screen
1084-
echo "LOGIN_STYLE='default" >> $HESTIA/conf/hestia.conf
1084+
echo "LOGIN_STYLE='default'" >> $HESTIA/conf/hestia.conf
10851085

10861086
# Version & Release Branch
10871087
echo "VERSION='${HESTIA_INSTALL_VER}'" >> $HESTIA/conf/hestia.conf

install/hst-install-ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1119,7 +1119,7 @@ echo "BACKUP_MODE='zstd'" >> $HESTIA/conf/hestia.conf
11191119
echo "LANGUAGE='$lang'" >> $HESTIA/conf/hestia.conf
11201120

11211121
# Login in screen
1122-
echo "LOGIN_STYLE='default" >> $HESTIA/conf/hestia.conf
1122+
echo "LOGIN_STYLE='default'" >> $HESTIA/conf/hestia.conf
11231123

11241124
# Version & Release Branch
11251125
echo "VERSION='${HESTIA_INSTALL_VER}'" >> $HESTIA/conf/hestia.conf

src/hst_bootstrap_install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Clean installation bootstrap for development purposes only
44
# Usage: ./hst_bootstrap_install.sh [fork] [branch] [os]
5-
# Example: ./hst_bootstrap_install.sh hestiacp master ubuntu
5+
# Example: ./hst_bootstrap_install.sh hestiacp main ubuntu
66

77
# Define variables
88
fork=$1
@@ -15,7 +15,7 @@ wget https://raw.githubusercontent.com/$fork/hestiacp/$branch/src/hst_autocompil
1515

1616
# Execute compiler and build hestia core package
1717
chmod +x hst_autocompile.sh
18-
./hst_autocompile.sh --hestia master no
18+
./hst_autocompile.sh --hestia $branch no
1919

2020
# Execute Hestia Control Panel installer with default dummy options for testing
2121
bash hst-install-$os.sh -f -y no -e admin@test.local -p P@ssw0rd -s hestia-$branch-$os.test.local --with-debs /tmp/hestiacp-src/debs

0 commit comments

Comments
 (0)