-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathtest.sh
executable file
·52 lines (52 loc) · 1.34 KB
/
test.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/bash
# FileName: test.sh
#
# Author: [email protected]
# Version: 3.1v
# Date: 2019-08-17
#
#--------------------------------------#
# 说明:该文件用于逐个测试站点情况,
# 仅用于 debug。
# 使用该测试文件的效果:
# - 快速设置发布站点,
# - 不会删除 tmp 中的简介文件,方便 debug,
# - 不会删除已经发布的 .torrent 文件,
# - 不会进入脚本超时控制模块,不会进入清理种子模块,
# - 使用 test_func,会跳过种子下载完成检测(*)。
#--------------------------------------#
test_func() {
test_func_probe=1
#---[hudbt]---#
enable_hudbt='no'
#---[whu]---#
enable_whu='no'
#---[npupt]---#
enable_npupt='no'
#---[nanyangpt]---#
enable_nanyangpt='no'
#---[byrbt]---#
enable_byrbt='no'
#---[cmct]---#
enable_cmct='no'
#---[mteam]---#
enable_mt='yes'
#---[tjupt]---#
enable_tjupt='no'
#---[tlfbits]---#
enable_tlfbits='yes'
#
}
#--------------------------------------#
#test_func #--Uncomment to debug!---#
#
debug_func() {
# set true to debug, false to close
if true; then
#if false; then
# 减少 debug 记录大量重复无用信息
if [[ ${completion:-100} -ge 50 ]]; then
printf '%b\n' "[$(date '+%m-%d %H:%M:%S')]:$*" >> "$debug_Log"
fi
fi
}