This repository has been archived by the owner on Oct 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 144
/
install.sh
800 lines (733 loc) · 22.4 KB
/
install.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
#!/bin/bash
#####################################################
#This shell script is used for sing-box installation
#Usage:
#
#Author:FranzKafka
#Date:2022-09-15
#Version:0.0.1
#####################################################
#Some basic definitions
plain='\033[0m'
red='\033[0;31m'
blue='\033[1;34m'
pink='\033[1;35m'
green='\033[0;32m'
yellow='\033[0;33m'
#os
OS_RELEASE=''
#arch
OS_ARCH=''
#sing-box version
SING_BOX_VERSION=''
#script version
SING_BOX_YES_VERSION='0.0.2'
#package download path
DOWNLAOD_PATH='/usr/local/sing-box'
#backup config path
CONFIG_BACKUP_PATH='/usr/local/etc'
#config install path
CONFIG_FILE_PATH='/usr/local/etc/sing-box'
#binary install path
BINARY_FILE_PATH='/usr/local/bin/sing-box'
#scritp install path
SCRIPT_FILE_PATH='/usr/local/sbin/sing-box'
#service install path
SERVICE_FILE_PATH='/etc/systemd/system/sing-box.service'
#log file save path
DEFAULT_LOG_FILE_SAVE_PATH='/usr/local/sing-box/sing-box.log'
#sing-box status define
declare -r SING_BOX_STATUS_RUNNING=1
declare -r SING_BOX_STATUS_NOT_RUNNING=0
declare -r SING_BOX_STATUS_NOT_INSTALL=255
#log file size which will trigger log clear
#here we set it as 25M
declare -r DEFAULT_LOG_FILE_DELETE_TRIGGER=25
#utils
function LOGE() {
echo -e "${red}[ERR] $* ${plain}"
}
function LOGI() {
echo -e "${green}[INF] $* ${plain}"
}
function LOGD() {
echo -e "${yellow}[DEG] $* ${plain}"
}
confirm() {
if [[ $# > 1 ]]; then
echo && read -p "$1 [默认$2]: " temp
if [[ x"${temp}" == x"" ]]; then
temp=$2
fi
else
read -p "$1 [y/n]: " temp
fi
if [[ x"${temp}" == x"y" || x"${temp}" == x"Y" ]]; then
return 0
else
return 1
fi
}
#Root check
[[ $EUID -ne 0 ]] && LOGE "请使用root用户运行该脚本" && exit 1
#System check
os_check() {
LOGI "检测当前系统中..."
if [[ -f /etc/redhat-release ]]; then
OS_RELEASE="centos"
elif cat /etc/issue | grep -Eqi "debian"; then
OS_RELEASE="debian"
elif cat /etc/issue | grep -Eqi "ubuntu"; then
OS_RELEASE="ubuntu"
elif cat /etc/issue | grep -Eqi "centos|red hat|redhat"; then
OS_RELEASE="centos"
elif cat /proc/version | grep -Eqi "debian"; then
OS_RELEASE="debian"
elif cat /proc/version | grep -Eqi "ubuntu"; then
OS_RELEASE="ubuntu"
elif cat /proc/version | grep -Eqi "centos|red hat|redhat"; then
OS_RELEASE="centos"
else
LOGE "系统检测错误,请联系脚本作者!" && exit 1
fi
LOGI "系统检测完毕,当前系统为:${OS_RELEASE}"
}
#arch check
arch_check() {
LOGI "检测当前系统架构中..."
OS_ARCH=$(arch)
LOGI "当前系统架构为 ${OS_ARCH}"
if [[ ${OS_ARCH} == "x86_64" || ${OS_ARCH} == "x64" || ${OS_ARCH} == "amd64" ]]; then
OS_ARCH="amd64"
elif [[ ${OS_ARCH} == "aarch64" || ${OS_ARCH} == "arm64" ]]; then
OS_ARCH="arm64"
else
OS_ARCH="amd64"
LOGE "检测系统架构失败,使用默认架构: ${OS_ARCH}"
fi
LOGI "系统架构检测完毕,当前系统架构为:${OS_ARCH}"
}
#sing-box status check,-1 means didn't install,0 means failed,1 means running
status_check() {
if [[ ! -f "${SERVICE_FILE_PATH}" ]]; then
return ${SING_BOX_STATUS_NOT_INSTALL}
fi
temp=$(systemctl status sing-box | grep Active | awk '{print $3}' | cut -d "(" -f2 | cut -d ")" -f1)
if [[ x"${temp}" == x"running" ]]; then
return ${SING_BOX_STATUS_RUNNING}
else
return ${SING_BOX_STATUS_NOT_RUNNING}
fi
}
#check config provided by sing-box core
config_check() {
if [[ ! -f "${CONFIG_FILE_PATH}/config.json" ]]; then
LOGE "${CONFIG_FILE_PATH}/config.json 不存在,配置检查失败"
return
else
info=$(${BINARY_FILE_PATH} check -c ${CONFIG_FILE_PATH}/config.json)
if [[ $? -ne 0 ]]; then
LOGE "配置检查失败,请查看日志"
else
LOGI "恭喜:配置检查通过"
fi
fi
}
set_as_entrance() {
if [[ ! -f "${SCRIPT_FILE_PATH}" ]]; then
wget --no-check-certificate -O ${SCRIPT_FILE_PATH} https://raw.githubusercontent.com/FranzKafkaYu/sing-box-yes/main/install.sh
chmod +x ${SCRIPT_FILE_PATH}
fi
}
#show sing-box status
show_status() {
status_check
case $? in
0)
show_sing_box_version
echo -e "[INF] sing-box状态: ${yellow}未运行${plain}"
show_enable_status
LOGI "配置文件路径:${CONFIG_FILE_PATH}/config.json"
LOGI "可执行文件路径:${BINARY_FILE_PATH}"
;;
1)
show_sing_box_version
echo -e "[INF] sing-box状态: ${green}已运行${plain}"
show_enable_status
show_running_status
LOGI "配置文件路径:${CONFIG_FILE_PATH}/config.json"
LOGI "可执行文件路径:${BINARY_FILE_PATH}"
;;
255)
echo -e "[INF] sing-box状态: ${red}未安装${plain}"
;;
esac
}
#show sing-box running status
show_running_status() {
status_check
if [[ $? == ${SING_BOX_STATUS_RUNNING} ]]; then
local pid=$(pidof sing-box)
local runTime=$(systemctl status sing-box | grep Active | awk '{for (i=5;i<=NF;i++)printf("%s ", $i);print ""}')
local memCheck=$(cat /proc/${pid}/status | grep -i vmrss | awk '{print $2,$3}')
LOGI "#####################"
LOGI "进程ID:${pid}"
LOGI "运行时长:${runTime}"
LOGI "内存占用:${memCheck}"
LOGI "#####################"
else
LOGE "sing-box未运行"
fi
}
#show sing-box version
show_sing_box_version() {
LOGI "版本信息:$(${BINARY_FILE_PATH} version)"
}
#show sing-box enable status,enabled means sing-box can auto start when system boot on
show_enable_status() {
local temp=$(systemctl is-enabled sing-box)
if [[ x"${temp}" == x"enabled" ]]; then
echo -e "[INF] sing-box是否开机自启: ${green}是${plain}"
else
echo -e "[INF] sing-box是否开机自启: ${red}否${plain}"
fi
}
#installation path create & delete,1->create,0->delete
create_or_delete_path() {
if [[ $# -ne 1 ]]; then
LOGE "invalid input,should be one paremete,and can be 0 or 1"
exit 1
fi
if [[ "$1" == "1" ]]; then
LOGI "Will create ${DOWNLAOD_PATH} and ${CONFIG_FILE_PATH} for sing-box..."
rm -rf ${DOWNLAOD_PATH} ${CONFIG_FILE_PATH}
mkdir -p ${DOWNLAOD_PATH} ${CONFIG_FILE_PATH}
if [[ $? -ne 0 ]]; then
LOGE "create ${DOWNLAOD_PATH} and ${CONFIG_FILE_PATH} for sing-box failed"
exit 1
else
LOGI "create ${DOWNLAOD_PATH} adn ${CONFIG_FILE_PATH} for sing-box success"
fi
elif [[ "$1" == "0" ]]; then
LOGI "Will delete ${DOWNLAOD_PATH} and ${CONFIG_FILE_PATH}..."
rm -rf ${DOWNLAOD_PATH} ${CONFIG_FILE_PATH}
if [[ $? -ne 0 ]]; then
LOGE "delete ${DOWNLAOD_PATH} and ${CONFIG_FILE_PATH} failed"
exit 1
else
LOGI "delete ${DOWNLAOD_PATH} and ${CONFIG_FILE_PATH} success"
fi
fi
}
#install some common utils
install_base() {
if [[ ${OS_RELEASE} == "ubuntu" || ${OS_RELEASE} == "debian" ]]; then
apt install wget tar jq -y
elif [[ ${OS_RELEASE} == "centos" ]]; then
yum install wget tar jq -y
fi
}
#download sing-box binary
download_sing-box() {
LOGD "开始下载sing-box..."
os_check && arch_check && install_base
if [[ $# -gt 1 ]]; then
echo -e "${red}invalid input,plz check your input: $* ${plain}"
exit 1
elif [[ $# -eq 1 ]]; then
SING_BOX_VERSION=$1
local SING_BOX_VERSION_TEMP="v${SING_BOX_VERSION}"
else
local SING_BOX_VERSION_TEMP=$(curl -Ls "https://api.github.com/repos/SagerNet/sing-box/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
SING_BOX_VERSION=${SING_BOX_VERSION_TEMP:1}
fi
LOGI "将选择使用版本:${SING_BOX_VERSION}"
local DOWANLOAD_URL="https://github.com/SagerNet/sing-box/releases/download/${SING_BOX_VERSION_TEMP}/sing-box-${SING_BOX_VERSION}-linux-${OS_ARCH}.tar.gz"
#here we need create directory for sing-box
create_or_delete_path 1
wget -N --no-check-certificate -O ${DOWNLAOD_PATH}/sing-box-${SING_BOX_VERSION}-linux-${OS_ARCH}.tar.gz ${DOWANLOAD_URL}
if [[ $? -ne 0 ]]; then
LOGE "Download sing-box failed,plz be sure that your network work properly and can access github"
create_or_delete_path 0
exit 1
else
LOGI "下载sing-box成功"
fi
}
#dwonload config examples,this should be called when dowanload sing-box
download_config() {
LOGD "开始下载sing-box配置模板..."
if [[ ! -d ${CONFIG_FILE_PATH} ]]; then
mkdir -p ${CONFIG_FILE_PATH}
fi
if [[ ! -f "${CONFIG_FILE_PATH}/config.json" ]]; then
wget --no-check-certificate -O ${CONFIG_FILE_PATH}/config.json https://raw.githubusercontent.com/FranzKafkaYu/sing-box-yes/main/shadowsocks2022/server_config.json
if [[ $? -ne 0 ]]; then
LOGE "下载sing-box配置模板失败,请检查网络"
exit 1
else
LOGI "下载sing-box配置模板成功"
fi
else
LOGI "${CONFIG_FILE_PATH} 已存在,无需重复下载"
fi
}
#backup config,this will be called when update sing-box
backup_config() {
LOGD "开始备份sing-box配置文件..."
if [[ ! -f "${CONFIG_FILE_PATH}/config.json" ]]; then
LOGE "当前无可备份配置文件"
return 0
else
mv ${CONFIG_FILE_PATH}/config.json ${CONFIG_BACKUP_PATH}/config.json.bak
fi
LOGD "备份sing-box配置文件完成"
}
#backup config,this will be called when update sing-box
restore_config() {
LOGD "开始还原sing-box配置文件..."
if [[ ! -f "${CONFIG_BACKUP_PATH}/config.json.bak" ]]; then
LOGE "当前无可备份配置文件"
return 0
else
mv ${CONFIG_BACKUP_PATH}/config.json.bak ${CONFIG_FILE_PATH}/config.json
fi
LOGD "还原sing-box配置文件完成"
}
#install sing-box,in this function we will download binary,paremete $1 will be used as version if it's given
install_sing-box() {
set_as_entrance
LOGD "开始安装sing-box..."
if [[ $# -ne 0 ]]; then
download_sing-box $1
else
download_sing-box
fi
download_config
if [[ ! -f "${DOWNLAOD_PATH}/sing-box-${SING_BOX_VERSION}-linux-${OS_ARCH}.tar.gz" ]]; then
clear_sing_box
LOGE "could not find sing-box packages,plz check dowanload sing-box whether suceess"
exit 1
fi
cd ${DOWNLAOD_PATH}
#decompress sing-box packages
tar -xvf sing-box-${SING_BOX_VERSION}-linux-${OS_ARCH}.tar.gz && cd sing-box-${SING_BOX_VERSION}-linux-${OS_ARCH}
if [[ $? -ne 0 ]]; then
clear_sing_box
LOGE "解压sing-box安装包失败,脚本退出"
exit 1
else
LOGI "解压sing-box安装包成功"
fi
#install sing-box
install -m 755 sing-box ${BINARY_FILE_PATH}
if [[ $? -ne 0 ]]; then
LOGE "install sing-box failed,exit"
exit 1
else
LOGI "install sing-box suceess"
fi
install_systemd_service && enable_sing-box && start_sing-box
LOGI "安装sing-box成功,已启动成功"
}
#update sing-box
update_sing-box() {
LOGD "开始更新sing-box..."
if [[ ! -f "${SERVICE_FILE_PATH}" ]]; then
LOGE "当前系统未安装sing-box,请在安装sing-box的前提下使用更新命令"
show_menu
fi
#here we need back up config first,and then restore it after installation
backup_config
#get the version paremeter
if [[ $# -ne 0 ]]; then
install_sing-box $1
else
install_sing-box
fi
restore_config
if ! systemctl restart sing-box; then
LOGE "update sing-box failed,please check logs"
show_menu
else
LOGI "update sing-box success"
fi
}
clear_sing_box() {
LOGD "开始清除sing-box..."
create_or_delete_path 0 && rm -rf ${SERVICE_FILE_PATH} && rm -rf ${BINARY_FILE_PATH} && rm -rf ${SCRIPT_FILE_PATH}
LOGD "清除sing-box完毕"
}
#uninstall sing-box
uninstall_sing-box() {
LOGD "开始卸载sing-box..."
pidOfsing_box=$(pidof sing-box)
if [ -n ${pidOfsing_box} ]; then
stop_sing-box
fi
clear_sing_box
if [ $? -ne 0 ]; then
LOGE "卸载sing-box失败,请检查日志"
exit 1
else
LOGI "卸载sing-box成功"
fi
}
#install systemd service
install_systemd_service() {
LOGD "开始安装sing-box systemd服务..."
if [ -f "${SERVICE_FILE_PATH}" ]; then
rm -rf ${SERVICE_FILE_PATH}
fi
#create service file
touch ${SERVICE_FILE_PATH}
if [ $? -ne 0 ]; then
LOGE "create service file failed,exit"
exit 1
else
LOGI "create service file success..."
fi
cat >${SERVICE_FILE_PATH} <<EOF
[Unit]
Description=sing-box Service
Documentation=https://sing-box.sagernet.org/
After=network.target nss-lookup.target
Wants=network.target
[Service]
Type=simple
ExecStart=${BINARY_FILE_PATH} run -c ${CONFIG_FILE_PATH}/config.json
Restart=on-failure
RestartSec=30s
RestartPreventExitStatus=23
LimitNPROC=10000
LimitNOFILE=1000000
[Install]
WantedBy=multi-user.target
EOF
chmod 644 ${SERVICE_FILE_PATH}
systemctl daemon-reload
LOGD "安装sing-box systemd服务成功"
}
#start sing-box
start_sing-box() {
if [ -f "${SERVICE_FILE_PATH}" ]; then
systemctl start sing-box
sleep 1s
status_check
if [ $? == ${SING_BOX_STATUS_NOT_RUNNING} ]; then
LOGE "start sing-box service failed,exit"
exit 1
elif [ $? == ${SING_BOX_STATUS_RUNNING} ]; then
LOGI "start sing-box service success"
fi
else
LOGE "${SERVICE_FILE_PATH} does not exist,can not start service"
exit 1
fi
}
#restart sing-box
restart_sing-box() {
if [ -f "${SERVICE_FILE_PATH}" ]; then
systemctl restart sing-box
sleep 1s
status_check
if [ $? == 0 ]; then
LOGE "restart sing-box service failed,exit"
exit 1
elif [ $? == 1 ]; then
LOGI "restart sing-box service success"
fi
else
LOGE "${SERVICE_FILE_PATH} does not exist,can not restart service"
exit 1
fi
}
#stop sing-box
stop_sing-box() {
LOGD "开始停止sing-box服务..."
status_check
if [ $? == ${SING_BOX_STATUS_NOT_INSTALL} ]; then
LOGE "sing-box did not install,can not stop it"
exit 1
elif [ $? == ${SING_BOX_STATUS_NOT_RUNNING} ]; then
LOGI "sing-box already stoped,no need to stop it again"
exit 1
elif [ $? == ${SING_BOX_STATUS_RUNNING} ]; then
if ! systemctl stop sing-box; then
LOGE "stop sing-box service failed,plz check logs"
exit 1
fi
fi
LOGD "停止sing-box服务成功"
}
#enable sing-box will set sing-box auto start on system boot
enable_sing-box() {
systemctl enable sing-box
if [[ $? == 0 ]]; then
LOGI "设置sing-box开机自启成功"
else
LOGE "设置sing-box开机自启失败"
fi
}
#disable sing-box
disable_sing-box() {
systemctl disable sing-box
if [[ $? == 0 ]]; then
LOGI "取消sing-box开机自启成功"
else
LOGE "取消sing-box开机自启失败"
fi
}
#show logs
show_log() {
status_check
if [[ $? == ${SING_BOX_STATUS_NOT_RUNNING} ]]; then
journalctl -u sing-box.service -e --no-pager -f
else
local disabled=$(cat ${CONFIG_FILE_PATH}/config.json | jq .log.disabled | tr -d '"')
if [[ ${disabled} == "true" ]]; then
LOGI "当前未开启日志,请确认配置"
exit 1
else
local filePath=$(cat ${CONFIG_FILE_PATH}/config.json | jq .log.output | tr -d '"')
if [[ ! -n ${filePath} || ! -f ${filePath} ]]; then
LOGE "日志${filePath}不存在,查看sing-box日志失败"
exit 1
else
LOGI "日志文件路径:${DEFAULT_LOG_FILE_SAVE_PATH}"
tail -f ${DEFAULT_LOG_FILE_SAVE_PATH} -s 3
fi
fi
fi
}
#clear log,the paremter is log file path
clear_log() {
local filePath=''
if [[ $# -gt 0 ]]; then
filePath=$1
else
read -p "请输入日志文件路径": filePath
if [[ ! -n ${filePath} ]]; then
LOGI "输入的日志文件路径无效,将使用默认的文件路径"
filePath=${DEFAULT_LOG_FILE_SAVE_PATH}
fi
fi
LOGI "日志路径为:${filePath}"
if [[ ! -f ${filePath} ]]; then
LOGE "清除sing-box 日志文件失败,${filePath}不存在,请确认"
exit 1
fi
fileSize=$(ls -la ${filePath} --block-size=M | awk '{print $5}' | awk -F 'M' '{print$1}')
if [[ ${fileSize} -gt ${DEFAULT_LOG_FILE_DELETE_TRIGGER} ]]; then
rm $1 && systemctl restart sing-box
if [[ $? -ne 0 ]]; then
LOGE "清除sing-box 日志文件失败"
else
LOGI "清除sing-box 日志文件成功"
fi
else
LOGI "当前日志大小为${fileSize}M,小于${DEFAULT_LOG_FILE_DELETE_TRIGGER}M,将不会清除"
fi
}
#enable auto delete log,need file path as
enable_auto_clear_log() {
LOGI "设置sing-box 定时清除日志..."
local disabled=false
disabled=$(cat ${CONFIG_FILE_PATH}/config.json | jq .log.disabled | tr -d '"')
if [[ ${disabled} == "true" ]]; then
LOGE "当前系统未开启日志,将直接退出脚本"
exit 0
fi
local filePath=''
if [[ $# -gt 0 ]]; then
filePath=$1
else
filePath=$(cat ${CONFIG_FILE_PATH}/config.json | jq .log.output | tr -d '"')
fi
if [[ ! -f ${filePath} ]]; then
LOGE "${filePath}不存在,设置sing-box 定时清除日志失败"
exit 1
fi
crontab -l >/tmp/crontabTask.tmp
echo "0 0 * * 6 sing-box clear ${filePath}" >>/tmp/crontabTask.tmp
crontab /tmp/crontabTask.tmp
rm /tmp/crontabTask.tmp
LOGI "设置sing-box 定时清除日志${filePath}成功"
}
#disable auto dlete log
disable_auto_clear_log() {
crontab -l | grep -v "sing-box clear" | crontab -
if [[ $? -ne 0 ]]; then
LOGI "取消sing-box 定时清除日志失败"
else
LOGI "取消sing-box 定时清除日志成功"
fi
}
#enable bbr
enable_bbr() {
# temporary workaround for installing bbr
bash <(curl -L -s https://raw.githubusercontent.com/teddysun/across/master/bbr.sh)
echo ""
}
#for cert issue
ssl_cert_issue() {
bash <(curl -Ls https://raw.githubusercontent.com/FranzKafkaYu/BashScripts/main/SSLAutoInstall/SSLAutoInstall.sh)
}
#show help
show_help() {
echo "sing-box-v${SING_BOX_YES_VERSION} 管理脚本使用方法: "
echo "------------------------------------------"
echo "sing-box - 显示快捷菜单 (功能更多)"
echo "sing-box start - 启动 sing-box服务"
echo "sing-box stop - 停止 sing-box服务"
echo "sing-box restart - 重启 sing-box服务"
echo "sing-box status - 查看 sing-box 状态"
echo "sing-box enable - 设置 sing-box 开机自启"
echo "sing-box disable - 取消 sing-box 开机自启"
echo "sing-box log - 查看 sing-box 日志"
echo "sing-box clear - 清除 sing-box 日志"
echo "sing-box update - 更新 sing-box 服务"
echo "sing-box install - 安装 sing-box 服务"
echo "sing-box uninstall - 卸载 sing-box 服务"
echo "------------------------------------------"
}
#show menu
show_menu() {
echo -e "
${green}sing-box-v${SING_BOX_YES_VERSION} 管理脚本${plain}
${green}0.${plain} 退出脚本
————————————————
${green}1.${plain} 安装 sing-box 服务
${green}2.${plain} 更新 sing-box 服务
${green}3.${plain} 卸载 sing-box 服务
${green}4.${plain} 启动 sing-box 服务
${green}5.${plain} 停止 sing-box 服务
${green}6.${plain} 重启 sing-box 服务
${green}7.${plain} 查看 sing-box 状态
${green}8.${plain} 查看 sing-box 日志
${green}9.${plain} 清除 sing-box 日志
${green}A.${plain} 检查 sing-box 配置
————————————————
${green}B.${plain} 设置 sing-box 开机自启
${green}C.${plain} 取消 sing-box 开机自启
${green}D.${plain} 设置 sing-box 定时清除日志&重启
${green}E.${plain} 取消 sing-box 定时清除日志&重启
————————————————
${green}F.${plain} 一键开启 bbr
${green}G.${plain} 一键申请SSL证书
"
show_status
echo && read -p "请输入选择[0-G]:" num
case "${num}" in
0)
exit 0
;;
1)
install_sing-box && show_menu
;;
2)
update_sing-box && show_menu
;;
3)
uninstall_sing-box && show_menu
;;
4)
start_sing-box && show_menu
;;
5)
stop_sing-box && show_menu
;;
6)
restart_sing-box && show_menu
;;
7)
show_menu
;;
8)
show_log && show_menu
;;
9)
clear_log && show_menu
;;
A)
config_check && show_menu
;;
B)
enable_sing-box && show_menu
;;
C)
disable_sing-box && show_menu
;;
D)
enable_auto_clear_log
;;
E)
disable_auto_clear_log
;;
F)
enable_bbr && show_menu
;;
G)
ssl_cert_issue
;;
*)
LOGE "请输入正确的选项 [0-G]"
;;
esac
}
start_to_run() {
set_as_entrance
clear
show_menu
}
main() {
if [[ $# > 0 ]]; then
case $1 in
"start")
start_sing-box
;;
"stop")
stop_sing-box
;;
"restart")
restart_sing-box
;;
"status")
show_status
;;
"enable")
enable_sing-box
;;
"disable")
disable_sing-box
;;
"log")
show_log
;;
"clear")
clear_log
;;
"update")
if [[ $# == 2 ]]; then
update_sing-box $2
else
update_sing-box
fi
;;
"install")
if [[ $# == 2 ]]; then
install_sing-box $2
else
install_sing-box
fi
;;
"uninstall")
uninstall_sing-box
;;
*) show_help ;;
esac
else
start_to_run
fi
}
main $*