Skip to content

Commit 8607b72

Browse files
committed
Change default to no
1 parent a013122 commit 8607b72

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

func/upgrade.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ upgrade_health_check() {
146146

147147
# Inactive session timeout
148148
if [ -z "$ALLOW_USERS_SYSTEM" ]; then
149-
echo "[ ! ] Adding missing variable to hestia.conf: ALLOW_USERS_SYSTEM ('yes')"
150-
$BIN/v-change-sys-config-value "ALLOW_USERS_SYSTEM" "yes"
149+
echo "[ ! ] Adding missing variable to hestia.conf: ALLOW_USERS_SYSTEM ('no')"
150+
$BIN/v-change-sys-config-value "ALLOW_USERS_SYSTEM" "no"
151151
fi
152152

153153
echo "[ * ] Health check complete. Starting upgrade from $VERSION to $new_version..."

install/hst-install-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1095,7 +1095,7 @@ echo "LOGIN_STYLE='default'" >> $HESTIA/conf/hestia.conf
10951095
echo "INACTIVE_SESSION_TIMEOUT='60'" >> $HESTIA/conf/hestia.conf
10961096

10971097
# Allow users to always create domains even the are not the owner of the main domain
1098-
echo "ALLOW_USERS_SYSTEM='yes'" >> $HESTIA/conf/hestia.conf
1098+
echo "ALLOW_USERS_SYSTEM='no'" >> $HESTIA/conf/hestia.conf
10991099

11001100
# Version & Release Branch
11011101
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
@@ -1128,7 +1128,7 @@ echo "LOGIN_STYLE='default'" >> $HESTIA/conf/hestia.conf
11281128
echo "INACTIVE_SESSION_TIMEOUT='60'" >> $HESTIA/conf/hestia.conf
11291129

11301130
# Allow users to always create domains even the are not the owner of the main domain
1131-
echo "ALLOW_USERS_SYSTEM='yes'" >> $HESTIA/conf/hestia.conf
1131+
echo "ALLOW_USERS_SYSTEM='no'" >> $HESTIA/conf/hestia.conf
11321132

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

0 commit comments

Comments
 (0)