Skip to content

Commit 2c08203

Browse files
committed
Merge remote-tracking branch 'origin/main' into fastcgi-add-valid-length
2 parents f8fd04d + 27556a9 commit 2c08203

File tree

491 files changed

+4102
-1966
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

491 files changed

+4102
-1966
lines changed

bin/v-acknowledge-user-notification

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ user=$1
1717
id=$2
1818

1919
# Includes
20+
# shellcheck source=/usr/local/hestia/func/main.sh
2021
source $HESTIA/func/main.sh
22+
# shellcheck source=/usr/local/hestia/conf/hestia.conf
2123
source $HESTIA/conf/hestia.conf
2224

2325

bin/v-add-backup-host

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ path=${5-/backup}
2323
port=$6
2424

2525
# Includes
26+
# shellcheck source=/usr/local/hestia/func/main.sh
2627
source $HESTIA/func/main.sh
28+
# shellcheck source=/usr/local/hestia/conf/hestia.conf
2729
source $HESTIA/conf/hestia.conf
2830

2931
# Paths

bin/v-add-cron-hestia-autoupdate

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ user=admin
1515
mode=$1
1616

1717
# Includes
18+
# shellcheck source=/usr/local/hestia/func/main.sh
1819
source $HESTIA/func/main.sh
20+
# shellcheck source=/usr/local/hestia/conf/hestia.conf
1921
source $HESTIA/conf/hestia.conf
2022

2123

bin/v-add-cron-job

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ job=$8
2525
restart=$9
2626

2727
# Includes
28+
# shellcheck source=/usr/local/hestia/func/main.sh
2829
source $HESTIA/func/main.sh
30+
# shellcheck source=/usr/local/hestia/conf/hestia.conf
2931
source $HESTIA/conf/hestia.conf
3032

3133
HIDE=7

bin/v-add-cron-letsencrypt-job

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
#----------------------------------------------------------#
1212

1313
# Includes
14+
# shellcheck source=/usr/local/hestia/func/main.sh
1415
source $HESTIA/func/main.sh
16+
# shellcheck source=/usr/local/hestia/conf/hestia.conf
1517
source $HESTIA/conf/hestia.conf
1618

1719

bin/v-add-cron-reports

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
user=$1
1818

1919
# Includes
20+
# shellcheck source=/usr/local/hestia/func/main.sh
2021
source $HESTIA/func/main.sh
22+
# shellcheck source=/usr/local/hestia/conf/hestia.conf
2123
source $HESTIA/conf/hestia.conf
2224

2325

bin/v-add-cron-restart-job

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
#----------------------------------------------------------#
1212

1313
# Includes
14+
# shellcheck source=/usr/local/hestia/func/main.sh
1415
source $HESTIA/func/main.sh
16+
# shellcheck source=/usr/local/hestia/conf/hestia.conf
1517
source $HESTIA/conf/hestia.conf
1618

1719

bin/v-add-database

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,11 @@ charset=${7-UTF8}
2929
charset=$(echo "$charset" |tr '[:lower:]' '[:upper:]')
3030

3131
# Includes
32+
# shellcheck source=/usr/local/hestia/func/main.sh
3233
source $HESTIA/func/main.sh
34+
# shellcheck source=/usr/local/hestia/func/db.sh
3335
source $HESTIA/func/db.sh
36+
# shellcheck source=/usr/local/hestia/conf/hestia.conf
3437
source $HESTIA/conf/hestia.conf
3538

3639
if [ "$type" = "pgsql" ]; then

bin/v-add-database-host

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,11 @@ template=${7}
2727
port=${8}
2828

2929
# Includes
30+
# shellcheck source=/usr/local/hestia/func/main.sh
3031
source $HESTIA/func/main.sh
32+
# shellcheck source=/usr/local/hestia/func/db.sh
3133
source $HESTIA/func/db.sh
34+
# shellcheck source=/usr/local/hestia/conf/hestia.conf
3235
source $HESTIA/conf/hestia.conf
3336

3437
is_mysql_host_alive() {

bin/v-add-database-temp-user

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,11 @@ if [ "$ttl" == '' ]; then
2525
fi
2626

2727
# Includes
28+
# shellcheck source=/usr/local/hestia/func/main.sh
2829
source $HESTIA/func/main.sh
30+
# shellcheck source=/usr/local/hestia/func/db.sh
2931
source $HESTIA/func/db.sh
32+
# shellcheck source=/usr/local/hestia/conf/hestia.conf
3033
source $HESTIA/conf/hestia.conf
3134

3235
#----------------------------------------------------------#

0 commit comments

Comments
 (0)