forked from amefs/quickbox-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
1615 lines (1520 loc) · 55 KB
/
setup.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
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/bin/bash
#
# [QuickBox Lite Installation Guide Script]
#
# GitHub: https://github.com/amefs/quickbox-lite
# Author: Amefs
# Current version: v1.5.10
# URL:
# Original Repo: https://github.com/QuickBox/QB
# Credits to: QuickBox.io
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
# shellcheck disable=SC2046,SC1090,SC2181,SC2059
#################################################################################
function _defaultcolor() {
export NEWT_COLORS='
root=,black
window=,lightgray
shadow=,color8
title=color8,
checkbox=,magenta
entry=,color8
label=blue,
actlistbox=,magenta
actsellistbox=,magenta
helpline=,magenta
roottext=,magenta
emptyscale=magenta
disabledentry=magenta,
'
}
function _errorcolor() {
export NEWT_COLORS='
root=,black
window=,white
shadow=,color8
title=red,
checkbox=,magenta
entry=,color8
label=blue,
actlistbox=,magenta
actsellistbox=,magenta
helpline=,magenta
roottext=,magenta
emptyscale=magenta
disabledentry=magenta,
'
}
_norm=$(tput sgr0)
_red=$(tput setaf 1)
_green=$(tput setaf 2)
_tan=$(tput setaf 3)
_cyan=$(tput setaf 6)
function _info() {
printf "${_cyan}➜ %s${_norm}\n" "$@"
}
function _success() {
printf "${_green}✓ %s${_norm}\n" "$@"
}
function _warning() {
printf "${_tan}⚠ %s${_norm}\n" "$@"
}
function _error() {
printf "${_red}✗ %s${_norm}\n" "$@"
}
function _init() {
_defaultcolor
# initialization environment
local_prefix=/etc/QuickBox/
local_setup_script=${local_prefix}setup/scripts/
local_setup_template=${local_prefix}setup/templates/
local_setup_dashboard=${local_prefix}setup/dashboard/
local_packages=${local_prefix}packages/
local_lang=${local_prefix}setup/lang/
if [[ ! -d /install ]]; then
mkdir /install
fi
if [[ ! -d /tmp ]]; then
mkdir /tmp
fi
DISTRO=$(lsb_release -is)
CODENAME=$(lsb_release -cs)
OSARCH=$(dpkg --print-architecture)
#RELEASE=$(lsb_release -rs)
#SETNAME=$(lsb_release -rc)
export LANG="en_US.UTF-8" >/dev/null 2>&1
export LC_ALL="en_US.UTF-8" >/dev/null 2>&1
export LANGUAGE="en_US.UTF-8" >/dev/null 2>&1
if (! export | grep -q sbin); then
export PATH=$PATH:/usr/local/sbin:/usr/sbin:/sbin
fi
{
# prepare scripts
echo -e "XXX\n00\nPreparing scripts... \nXXX"
# install base packages
DEBIAN_FRONTEND=noninteractive apt-get -qq -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" update >/dev/null 2>&1
echo -e "XXX\n10\nPreparing scripts... \nXXX"
if [[ $DISTRO == Ubuntu && $CODENAME =~ ("bionic"|"focal") ]]; then
apt-get -y install git curl wget dos2unix python apt-transport-https software-properties-common dnsutils unzip jq >/dev/null 2>&1
elif [[ $DISTRO == Ubuntu && $CODENAME =~ ("jammy") ]]; then
apt-get -y install git curl wget dos2unix python3 apt-transport-https software-properties-common dnsutils unzip jq >/dev/null 2>&1
elif [[ $DISTRO == Debian ]]; then
apt-get -y install git curl wget dos2unix python3 apt-transport-https software-properties-common gnupg2 ca-certificates dnsutils unzip jq >/dev/null 2>&1
fi
echo -e "XXX\n20\nPreparing scripts... \nXXX"
dos2unix $(find ${local_prefix} -type f) >/dev/null 2>&1
chmod +x $(find ${local_prefix} -type f) >/dev/null 2>&1
if [[ -d /usr/local/bin/quickbox ]]; then
rm -rf /usr/local/bin/quickbox
fi
ln -s ${local_packages} /usr/local/bin/quickbox
echo -e "XXX\n30\nPreparing scripts... Done.\nXXX"
sleep 0.5
# install net-tools for IP detection
echo -e "XXX\n30\nGetting network status... \nXXX"
apt-get -qq -y install net-tools >/dev/null 2>&1
echo -e "XXX\n50\nGetting network status... Done.\nXXX"
sleep 0.5
# remove Apache
echo -e "XXX\n50\nClean up the environment for installation... \nXXX"
systemctl stop apache2 >/dev/null 2>&1
systemctl disable apache2 >/dev/null 2>&1
APACHE_PKGS='apache2 apache2-bin apache2-data'
for depend in $APACHE_PKGS; do
DEBIAN_FRONTEND=noninteractive apt-get -y remove "${depend}" >/dev/null 2>&1
DEBIAN_FRONTEND=noninteractive apt-get -y purge "${depend}" >/dev/null 2>&1
done
apt-get -y autoclean >/dev/null 2>&1
echo -e "XXX\n70\nClean up the environment for installation... Done.\nXXX"
sleep 0.5
# setup location infomation
echo -e "XXX\n70\nSetting up location... \nXXX"
if (grep -q "en_US.UTF-8 UTF-8" /etc/locale.gen >/dev/null 2>&1); then
sed -i "s/#\s*en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/g" /etc/locale.gen
else
echo "en_US.UTF-8 UTF-8" >>/etc/locale.gen
fi
if (grep -q "zh_CN.UTF-8 UTF-8" /etc/locale.gen >/dev/null 2>&1); then
sed -i "s/#\s*zh_CN.UTF-8 UTF-8/zh_CN.UTF-8 UTF-8/g" /etc/locale.gen
else
echo "zh_CN.UTF-8 UTF-8" >>/etc/locale.gen
fi
apt-get update -y -q >/dev/null 2>&1
apt-get install locales -y -q >/dev/null 2>&1
locale-gen >/dev/null 2>&1
DEBIAN_FRONTEND=noninteractive dpkg-reconfigure locales >/dev/null 2>&1
echo -e "XXX\n100\nInitialization Finished\nXXX"
sleep 1
} | whiptail --title "Initialization" --gauge "Initializing installation" 8 64 0
}
function _selectlang() {
local menu_choice
menu_choice=$(
whiptail --title "Installation Language" --menu "Choose a language" --nocancel 12 72 4 \
"English" " Install with English" \
"Chinese Simpified" " 安装为简体中文" 3>&1 1>&2 2>&3
)
case $menu_choice in
"English")
source ${local_lang}en.lang
echo 'LANGUAGE="en_US.UTF-8"' >>/etc/default/locale
echo 'LC_ALL="en_US.UTF-8"' >>/etc/default/locale
uilang="en"
;;
"Chinese Simpified")
source ${local_lang}zh-cn.lang
echo 'LANGUAGE="zh_CN.UTF-8"' >>/etc/default/locale
echo 'LC_ALL="zh_CN.UTF-8"' >>/etc/default/locale
uilang="zh"
;;
esac
DEBIAN_FRONTEND=noninteractive dpkg-reconfigure locales >/dev/null 2>&1
}
function _checkroot() {
if [[ $EUID != 0 ]]; then
_errorcolor
whiptail --title "$ERROR_TITLE_PERM" --msgbox "$ERROR_TEXT_PERM" --ok-button "$BUTTON_OK" 8 72
_defaultcolor
exit 1
fi
}
function _checkdistro() {
if [[ ! "$DISTRO" =~ ("Ubuntu"|"Debian") ]]; then
_errorcolor
whiptail --title "$ERROR_TITLE_OS" --msgbox "${ERROR_TEXT_DESTRO_1}${DISTRO}${ERROR_TEXT_DESTRO_2}" --ok-button "$BUTTON_OK" 8 72
_defaultcolor
exit 1
elif [[ ! "$CODENAME" =~ ("buster"|"bullseye"|"focal"|"jammy"|"bookworm") ]]; then
_errorcolor
whiptail --title "$ERROR_TITLE_OS" --msgbox "${ERROR_TEXT_CODENAME_1}${DISTRO}${ERROR_TEXT_CODENAME_2}" --ok-button "$BUTTON_OK" 8 72
_defaultcolor
exit 1
elif [[ "$OSARCH" != "amd64" ]]; then
_errorcolor
whiptail --title "$ERROR_TITLE_OS" --msgbox "$ERROR_TEXT_OSARCH" --ok-button "$BUTTON_OK" 8 72
_defaultcolor
exit 1
fi
}
function _checkkernel() {
local kernel=0
grsec=$(uname -a | grep -i grs)
if [[ -n $grsec ]]; then
_errorcolor
whiptail --title "$ERROR_TITLE_KERNEL" --msgbox "${ERROR_TEXT_KERNEL_1}$(uname -r)\n${ERROR_TEXT_KERNEL_2}" --ok-button "$BUTTON_OK" 8 72
_defaultcolor
if (whiptail --title "$INFO_TITLE_REPLACE_KERNEL" --yesno "$INFO_TEXT_REPLACE_KERNEL" --yes-button "$BUTTON_YES" --no-button "$BUTTON_NO" 8 72); then
whiptail --title "$INFO" --msgbox "$INFO_TEXT_REPLACE_KERNEL_CONFIRM" --ok-button "$BUTTON_OK" 8 72
kernel=1
else
whiptail --title "$INFO_TITLE_EXIT" --msgbox "$INFO_TEXT_ABORT" --ok-button "$BUTTON_OK" 6 72
kernel=0
exit 0
fi
if [[ $kernel == 1 ]]; then
if [[ $DISTRO == Ubuntu ]]; then
apt-get install -q -y linux-image-generic >>/dev/null 2>&1
elif [[ $DISTRO == Debian ]]; then
arch=$(uname -m)
if [[ $arch =~ ("i686"|"i386") ]]; then
apt-get install -q -y linux-image-686 >>/dev/null 2>&1
elif [[ $arch == x86_64 ]]; then
apt-get install -q -y linux-image-amd64 >>/dev/null 2>&1
fi
fi
mv /etc/grub.d/06_OVHkernel /etc/grub.d/25_OVHkernel
update-grub >>/dev/null 2>&1
fi
fi
}
function _checkovz() {
if [[ -d /proc/vz ]]; then
whiptail --title "$ERROR_TITLE_OVZ" --msgbox "$ERROR_TEXT_OVZ" --ok-button "$BUTTON_OK" 6 72
exit 1
fi
}
function _welcome() {
whiptail --title "$INFO_TITLE_WELCOME" --msgbox "$INFO_TEXT_WELCOME" --ok-button "$BUTTON_OK" 8 72
# Manual
whiptail --title "$INFO_TITLE_MANUAL" --msgbox "$INFO_TEXT_MANUAL" --ok-button "$BUTTON_OK" 12 72
# Disclaimer
if (! whiptail --title "$INFO_TITLE_DISCLAIMER" --yesno "$INFO_TEXT_DISCLAIMER" --yes-button "$BUTTON_ACCEPT" --no-button "$BUTTON_DECLINE" 12 72); then
exit 1
fi
}
function _logcheck() {
if (whiptail --title "$INFO_TITLE_LOG" --yesno "$INFO_TEXT_LOG" --yes-button "$BUTTON_YES" --no-button "$BUTTON_NO" 8 72); then
OUTTO="/root/quickbox.$PPID.log"
else
OUTTO="/dev/null 2>&1"
fi
}
function _get_ip() {
ip=$(curl -s https://ipinfo.io/ip)
[[ -z ${ip} ]] && ip=$(curl -s https://api.ip.sb/ip)
[[ -z ${ip} ]] && ip=$(curl -s https://api.ipify.org)
[[ -z ${ip} ]] && ip=$(curl -s https://ip.seeip.org)
[[ -z ${ip} ]] && ip=$(curl -s https://ifconfig.co/ip)
[[ -z ${ip} ]] && ip=$(curl -s https://api.myip.com | grep -oE "([0-9]{1,3}\.){3}[0-9]{1,3}")
[[ -z ${ip} ]] && ip=$(curl -s icanhazip.com)
[[ -z ${ip} ]] && ip=$(curl -s myip.ipip.net | grep -oE "([0-9]{1,3}\.){3}[0-9]{1,3}")
}
function _askdomain() {
if (whiptail --title "$INFO_TITLE_DOMAIN" --yesno "$INFO_TEXT_DOMAIN" --yes-button "$BUTTON_YES" --no-button "$BUTTON_NO" --defaultno 8 72); then
while [[ $domain == "" ]]; do
domain=$(whiptail --title "$INFO_TITLE_SETDOMAIN" --inputbox "$INFO_TEXT_SETDOMAIN" 10 72 --ok-button "$BUTTON_OK" --cancel-button "$BUTTON_CANCLE" 3>&1 1>&2 2>&3)
_get_ip
test_domain=$(curl -sH 'accept: application/dns-json' "https://cloudflare-dns.com/dns-query?name=$domain&type=A" | grep -oE "([0-9]{1,3}\.){3}[0-9]{1,3}" | head -1)
if [[ $test_domain != "${ip}" ]]; then
whiptail --title "$ERROR_TITLE_DOMAINCHK" --msgbox "${ERROR_TEXT_DOMAINCHK_1}$domain${ERROR_TEXT_DOMAINCHK_2}" --ok-button "$BUTTON_OK" 8 72
domain=""
else
whiptail --title "$INFO_TITLE_DOMAINCHK" --msgbox "${INFO_TEXT_DOMAINCHK_1}$domain${INFO_TEXT_DOMAINCHK_2}" --ok-button "$BUTTON_OK" 8 72
hostname=$domain
fi
done
else
domain=""
fi
}
function _askhostname() {
hostname=$(whiptail --title "$INFO_TITLE_HOSTNAME" --inputbox "$INFO_TEXT_HOSTNAME" 10 72 --ok-button "$BUTTON_OK" --cancel-button "$BUTTON_CANCLE" 3>&1 1>&2 2>&3)
}
function _chhostname() {
if [[ $hostname != "" ]]; then
old_hostname=$(cat /etc/hostname)
echo "${hostname}" >/etc/hostname
sed -i "s/127.0.1.1\s*${old_hostname}/127.0.1.1 ${hostname}/g" /etc/hosts >>"${OUTTO}" 2>&1
sed -i "/127.0.0.1\s*localhost/a 127.0.0.1 ${hostname}" /etc/hosts >>"${OUTTO}" 2>&1
fi
}
function _askchport() {
chport=""
while [[ $chport == "" ]]; do
chport=$(
whiptail --title "$INFO_TITLE_SSH" --radiolist \
"$INFO_TEXT_SSH" 12 40 4 \
"default" "$CHOICE_TEXT_SSH_1" off \
"4747" "$CHOICE_TEXT_SSH_2" on \
"other" "$CHOICE_TEXT_SSH_3" off \
--ok-button "$BUTTON_OK" --cancel-button "$BUTTON_CANCLE" 3>&1 1>&2 2>&3
)
if [[ $chport == "other" ]]; then
port=$(whiptail --title "$INFO_TITLE_SSH" --inputbox "$INPUT_TEXT_SSH" 10 72 --ok-button "$BUTTON_OK" --cancel-button "$BUTTON_CANCLE" 3>&1 1>&2 2>&3)
chport=$(echo "$port" | grep -P '^()([1-9]|[1-5]?[0-9]{2,4}|6[1-4][0-9]{3}|65[1-4][0-9]{2}|655[1-2][0-9]|6553[1-5])$')
if [[ $chport == "" ]]; then
whiptail --title "$ERROR_TITLE_SSH" --msgbox "$ERROR_TEXT_SSH" --ok-button "$BUTTON_OK" 10 72
fi
fi
done
}
function _changeport() {
if [[ -e /etc/ssh/sshd_config ]]; then
sed -i "s/#*Port\s[0-9]*/Port $chport/g" /etc/ssh/sshd_config
service ssh restart >>"${OUTTO}" 2>&1
fi
}
function _askusrname() {
local count=0
local valid=false
# https://github.com/Azure/azure-devops-utils
local reserved_names=('adm' 'admin' 'audio' 'backup' 'bin' 'cdrom' 'crontab' 'daemon' 'dialout' 'dip' 'disk' 'fax' 'floppy' 'fuse' 'games' 'gnats' 'irc' 'kmem' 'landscape' 'libuuid' 'list' 'lp' 'mail' 'man' 'messagebus' 'mlocate' 'netdev' 'news' 'nobody' 'nogroup' 'operator' 'plugdev' 'proxy' 'root' 'sasl' 'shadow' 'src' 'ssh' 'sshd' 'staff' 'sudo' 'sync' 'sys' 'syslog' 'tape' 'tty' 'users' 'utmp' 'uucp' 'video' 'voice' 'whoopsie' 'www-data')
while [[ $valid == false ]]; do
username=$(whiptail --title "$INFO_TITLE_NAME" --inputbox "$INFO_TEXT_NAME" --ok-button "$BUTTON_OK" --cancel-button "$BUTTON_CANCLE" 8 72 3>&1 1>&2 2>&3)
# check username length
count=$(echo -n "$username" | wc -c)
# ensure vaild username
valid=$(echo "$username" | grep -P '^[a-z][-a-z0-9_]*')
_errorcolor
if echo "${reserved_names[@]}" | grep -wq "$username"; then
whiptail --title "$ERROR_TITLE_NAME" --msgbox "$ERROR_TEXT_NAME_1" --ok-button "$BUTTON_OK" 8 72
valid=false
elif [[ $count -lt 3 || $count -gt 32 ]]; then
whiptail --title "$ERROR_TITLE_NAME" --msgbox "$ERROR_TEXT_NAME_2" --ok-button "$BUTTON_OK" 8 72
valid=false
elif ! [[ "$username" =~ ^[a-z][-a-z0-9_]*$ ]]; then
whiptail --title "$ERROR_TITLE_NAME" --msgbox "$ERROR_TEXT_NAME_3" --ok-button "$BUTTON_OK" 10 72
valid=false
else
valid=true
fi
_defaultcolor
done
}
function _askpasswd() {
local count=0
local strength=""
while [[ $strength == "" || $count -lt 8 ]]; do
password=$(whiptail --title "$INFO_TITLE_PASSWD" --passwordbox "$INFO_TEXT_PASSWD" 8 72 --ok-button "$BUTTON_OK" --cancel-button "$BUTTON_CANCLE" 3>&1 1>&2 2>&3)
# check password length
count=$(echo -n "$password" | wc -c)
# ensure password strength
strength=$(echo "$password" | grep -P '(?=^.{8,32}$)(?=^[^\s]*$)(?=.*\d)(?=.*[A-Z])(?=.*[a-z])')
_errorcolor
if [[ $count -lt 8 ]]; then
whiptail --title "$ERROR_TITLE_PASSWD" --msgbox "$ERROR_TEXT_PASSWD_1" --ok-button "$BUTTON_OK" 8 72
else
if [[ $strength == "" ]]; then
whiptail --title "$ERROR_TITLE_PASSWD" --msgbox \
"$ERROR_TEXT_PASSWD_2" --ok-button "$BUTTON_OK" 10 72
fi
fi
_defaultcolor
done
}
function _cf() {
DOMAIN="deb.ezapi.net"
SUBFOLDER=""
SUFFIX=""
}
function _sf() {
DOMAIN="sourceforge.net"
SUBFOLDER="projects/seedbox-software-for-linux/files/"
SUFFIX="/download"
}
function _osdn() {
DOMAIN="osdn.dl.osdn.net"
SUBFOLDER="storage/g/s/se/seedbox-software-for-linux/"
SUFFIX=""
}
function _github() {
DOMAIN="raw.githubusercontent.com"
SUBFOLDER="amefs/quickbox-files/master/"
SUFFIX=""
}
function _skel() {
echo -e "XXX\n17\n$INFO_TEXT_PROGRESS_3_1\nXXX"
mkdir -p /etc/skel
cp -rf ${local_setup_template}skel /etc
# init download url
case "${cdn}" in
"--with-cf")
_cf
echo "cf" > /install/.cdn.lock
wget -t3 -T20 -q -O GeoLiteCity.dat.gz "https://${DOMAIN}/${SUBFOLDER}all-platform/GeoLiteCity.dat.gz${SUFFIX}"
if [ $? -ne 0 ]; then
_sf
wget -t5 -T10 -q -O GeoLiteCity.dat.gz "https://${DOMAIN}/${SUBFOLDER}all-platform/GeoLiteCity.dat.gz${SUFFIX}"
if [ $? -ne 0 ]; then
_osdn
wget -t5 -T10 -q -O GeoLiteCity.dat.gz "https://${DOMAIN}/${SUBFOLDER}all-platform/GeoLiteCity.dat.gz${SUFFIX}"
fi
fi
;;
"--with-sf")
_sf
echo "cf" > /install/.cdn.lock
wget -t3 -T10 -q -O GeoLiteCity.dat.gz "https://${DOMAIN}/${SUBFOLDER}all-platform/GeoLiteCity.dat.gz${SUFFIX}"
if [ $? -ne 0 ]; then
_cf
wget -t5 -T20 -q -O GeoLiteCity.dat.gz "https://${DOMAIN}/${SUBFOLDER}all-platform/GeoLiteCity.dat.gz${SUFFIX}"
if [ $? -ne 0 ]; then
_osdn
wget -t5 -T10 -q -O GeoLiteCity.dat.gz "https://${DOMAIN}/${SUBFOLDER}all-platform/GeoLiteCity.dat.gz${SUFFIX}"
fi
fi
;;
"--with-osdn")
_osdn
echo "osdn" > /install/.cdn.lock
wget -t3 -T10 -q -O GeoLiteCity.dat.gz "https://${DOMAIN}/${SUBFOLDER}all-platform/GeoLiteCity.dat.gz${SUFFIX}"
if [ $? -ne 0 ]; then
_cf
wget -t5 -T20 -q -O GeoLiteCity.dat.gz "https://${DOMAIN}/${SUBFOLDER}all-platform/GeoLiteCity.dat.gz${SUFFIX}"
if [ $? -ne 0 ]; then
_sf
wget -t5 -T10 -q -O GeoLiteCity.dat.gz "https://${DOMAIN}/${SUBFOLDER}all-platform/GeoLiteCity.dat.gz${SUFFIX}"
fi
fi
;;
"--with-github")
_github
echo "github" > /install/.cdn.lock
wget -t3 -T10 -q -O GeoLiteCity.dat.gz "https://${DOMAIN}/${SUBFOLDER}all-platform/GeoLiteCity.dat.gz${SUFFIX}"
if [ $? -ne 0 ]; then
_cf
wget -t5 -T20 -q -O GeoLiteCity.dat.gz "https://${DOMAIN}/${SUBFOLDER}all-platform/GeoLiteCity.dat.gz${SUFFIX}"
if [ $? -ne 0 ]; then
_sf
wget -t5 -T10 -q -O GeoLiteCity.dat.gz "https://${DOMAIN}/${SUBFOLDER}all-platform/GeoLiteCity.dat.gz${SUFFIX}"
fi
fi
;;
*)
_github
echo "github" > /install/.cdn.lock
wget -t3 -T10 -q -O GeoLiteCity.dat.gz "https://${DOMAIN}/${SUBFOLDER}all-platform/GeoLiteCity.dat.gz${SUFFIX}"
if [ $? -ne 0 ]; then
_cf
wget -t5 -T20 -q -O GeoLiteCity.dat.gz "https://${DOMAIN}/${SUBFOLDER}all-platform/GeoLiteCity.dat.gz${SUFFIX}"
if [ $? -ne 0 ]; then
_sf
wget -t5 -T10 -q -O GeoLiteCity.dat.gz "https://${DOMAIN}/${SUBFOLDER}all-platform/GeoLiteCity.dat.gz${SUFFIX}"
fi
fi
;;
esac
gunzip GeoLiteCity.dat.gz >/dev/null 2>&1
mkdir -p /usr/share/GeoIP
rm -rf GeoLiteCity.dat.gz
mv GeoLiteCity.dat /usr/share/GeoIP/GeoIPCity.dat
(
echo y
echo o conf prerequisites_policy follow
echo o conf commit
) >/dev/null 2>&1 | cpan Digest::SHA1 >>"${OUTTO}" 2>&1
(
echo y
echo o conf prerequisites_policy follow
echo o conf commit
) >/dev/null 2>&1 | cpan Digest::SHA >>"${OUTTO}" 2>&1
}
function _lshell() {
echo -e "XXX\n18\n$INFO_TEXT_PROGRESS_3_2\nXXX"
apt-get -y install lshell >/dev/null 2>&1
cp ${local_setup_template}lshell/lshell.conf.template /etc/lshell.conf
}
function _genadmin() {
# add skel template
_skel
# add limit shell
_lshell
echo -e "XXX\n19\n$INFO_TEXT_PROGRESS_3\nXXX"
# save account info to file
local passphrase
passphrase=$(openssl rand -hex 64)
echo "${username}:$(echo "${password}" | openssl enc -aes-128-ecb -pbkdf2 -a -e -pass pass:"${passphrase}" -nosalt)" >/root/.admin.info
mkdir -p /root/.qbuser
cp /root/.admin.info /root/.qbuser/"${username}".info
mkdir -p /root/.ssh
echo "${passphrase}" >/root/.ssh/local_user
chmod 600 /root/.ssh/local_user && chmod 700 /root/.ssh
# create account
if [[ -d /home/$username ]]; then
cd /etc/skel || exit 1
cp -fR . /home/"${username}"/
else
useradd "${username}" -m -G www-data -s /bin/bash
fi
chpasswd <<<"${username}:${password}"
echo "${username}:$(openssl passwd -apr1 "${password}")" >/etc/htpasswd
mkdir -p /etc/htpasswd.d/
echo "${username}:$(openssl passwd -apr1 "${password}")" >/etc/htpasswd.d/htpasswd."${username}"
chown -R "${username}":"${username}" /home/"${username}"
chmod 750 /home/"${username}"
echo "D /var/run/${username} 0750 ${username} ${username} -" >>/etc/tmpfiles.d/"${username}".conf
systemd-tmpfiles /etc/tmpfiles.d/"${username}".conf --create >>"${OUTTO}" 2>&1
# setup sudoers
cp ${local_setup_template}sudoers.template /etc/sudoers.d/dashboard
if grep "${username}" /etc/sudoers.d/quickbox >/dev/null 2>&1; then
echo "No sudoers modification made ... " >>"${OUTTO}" 2>&1
else
echo "${username} ALL=(ALL:ALL) ALL" >>/etc/sudoers.d/quickbox
fi
# setup bash custom
if [ ! -f /root/.bash_qb ]; then
cat >>/root/.bashrc <<'EOF'
if [ -f ~/.bash_qb ]; then
. ~/.bash_qb
fi
EOF
cp ${local_setup_template}bash_qb.template /root/.bash_qb
cp ${local_setup_template}bash_qb_extras.template /root/.bash_qb_extras
fi
# set home permission
chmod 755 /home/"${username}"
}
function _askvsftpd() {
ip=$(ip addr show | grep 'inet ' | grep -v 127.0.0.1 | awk '{print $2}' | cut -d/ -f1 | head -n 1)
if (whiptail --title "$INFO_TITLE_FTP" --yesno "$INFO_TEXT_FTP" --yes-button "$BUTTON_YES" --no-button "$BUTTON_NO" 8 72); then
ftp=1
ftp_ip=""
ftp_ip=$(whiptail --title "$INFO_TITLE_FTP_IP" --inputbox "${INFO_TEXT_FTP_IP_1} ${ip}\n${INFO_TEXT_FTP_IP_2}" 10 72 --ok-button "$BUTTON_OK" --cancel-button "$BUTTON_CANCLE" 3>&1 1>&2 2>&3)
if [[ $ftp_ip == "" ]]; then ftp_ip=${ip}; fi
else
ftp=0
fi
}
function _setvsftpd() {
apt-get -y install vsftpd >>"${OUTTO}" 2>&1
systemctl stop vsftpd >/dev/null 2>&1
cp ${local_setup_template}openssl.cnf.template /root/.openssl.cnf
openssl req -config /root/.openssl.cnf -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/ssl/private/vsftpd.pem -out /etc/ssl/private/vsftpd.pem >/dev/null 2>&1
cp ${local_setup_template}vsftpd/vsftpd.conf.template /etc/vsftpd.conf
sed -i 's/^\(pasv_min_port=\).*/\110090/' /etc/vsftpd.conf
sed -i 's/^\(pasv_max_port=\).*/\110100/' /etc/vsftpd.conf
echo "pasv_address=$ftp_ip" >>/etc/vsftpd.conf
iptables -I INPUT -p tcp --destination-port 10090:10100 -j ACCEPT >>"${OUTTO}" 2>&1
echo "" >/etc/vsftpd.chroot_list
systemctl start vsftpd >/dev/null 2>&1
}
function _askdashtheme() {
dash_theme=""
while [[ $dash_theme == "" ]]; do
dash_theme=$(
whiptail --title "$INFO_TITLE_THEME" --radiolist \
"$INFO_TEXT_THEME" 12 48 4 \
"defaulted" "$CHOICE_TEXT_THEME_1" off \
"smoked" "$CHOICE_TEXT_THEME_2" on \
3>&1 1>&2 2>&3
)
done
}
function _askchangetz() {
if (whiptail --title "$INFO_TITLE_TZ" --yesno "$INFO_TEXT_TZ" --yes-button "$BUTTON_YES" --no-button "$BUTTON_NO" --defaultno 8 72); then
dpkg-reconfigure tzdata
fi
}
function _askchsource() {
if (whiptail --title "$INFO_TITLE_SOURCE" --yesno "$INFO_TEXT_SOURCE" --yes-button "$BUTTON_YES" --no-button "$BUTTON_NO" 8 72); then
chsource=1
mirror=$(
whiptail --title "$INFO_TITLE_SOURCE" --radiolist \
"$INFO_TEXT_SOURCE_EXTRA" 15 32 8 \
"us" "$CHOICE_TEXT_SOURCE_EXTRA_US" on \
"au" "$CHOICE_TEXT_SOURCE_EXTRA_AU" off \
"cn" "$CHOICE_TEXT_SOURCE_EXTRA_CN" off \
"fr" "$CHOICE_TEXT_SOURCE_EXTRA_FR" off \
"de" "$CHOICE_TEXT_SOURCE_EXTRA_DE" off \
"jp" "$CHOICE_TEXT_SOURCE_EXTRA_JP" off \
"ru" "$CHOICE_TEXT_SOURCE_EXTRA_RU" off \
"uk" "$CHOICE_TEXT_SOURCE_EXTRA_UK" off \
"tuna" "$CHOICE_TEXT_SOURCE_EXTRA_TUNA" off \
3>&1 1>&2 2>&3
)
else
chsource=0
fi
}
function _askcdn() {
if (whiptail --title "$INFO_TITLE_CDN" --yesno "$INFO_TEXT_CDN" --yes-button "$BUTTON_YES" --no-button "$BUTTON_NO" 8 72); then
cdn="--with-"
cdn+=$(
whiptail --title "$INFO_TITLE_CDN" --radiolist \
"$INFO_TEXT_CDN_EXTRA" 12 42 4 \
"cf" "$CHOICE_TEXT_CDN_EXTRA_CF" off \
"sf" "$CHOICE_TEXT_CDN_EXTRA_SF" off \
"osdn" "$CHOICE_TEXT_CDN_EXTRA_OSDN" off \
"github" "$CHOICE_TEXT_CDN_EXTRA_GITHUB" on \
3>&1 1>&2 2>&3
)
else
cdn="--with-github"
fi
}
function _askSwap() {
swap_path=$(whiptail --title "$INFO_TITLE_SWAP" --inputbox "${INFO_TEXT_SWAP_1} \n${INFO_TEXT_SWAP_2}" 10 72 --ok-button "$BUTTON_OK" --cancel-button "$BUTTON_CANCLE" 3>&1 1>&2 2>&3)
if [[ ${swap_path} == "" ]]; then
swap_path="/root/.swapfile"
elif [[ ! -d $(dirname ${swap_path}) ]]; then
swap_path="/root/.swapfile"
fi
{
if [[ ! -f ${swap_path} ]]; then
touch ${swap_path} || exit 1
fi
echo -e "XXX\n10\n$INFO_TEXT_SWAPON_0$INFO_TEXT_DONE\nXXX"
sleep 1
echo -e "XXX\n10\n$INFO_TEXT_SWAPON_1\nXXX"
dd if=/dev/zero of=${swap_path} bs=1M count=2048 >/dev/null 2>&1
echo -e "XXX\n50\n$INFO_TEXT_SWAPON_1$INFO_TEXT_DONE\nXXX"
sleep 1
echo -e "XXX\n50\n$INFO_TEXT_SWAPON_2\nXXX"
chmod 600 ${swap_path} >/dev/null 2>&1
mkswap ${swap_path} >/dev/null 2>&1
swapon ${swap_path} >/dev/null 2>&1
swapon -s >/dev/null 2>&1
echo -e "XXX\n75\n$INFO_TEXT_SWAPON_2$INFO_TEXT_DONE\nXXX"
sleep 1
echo -e "XXX\n75\n$INFO_TEXT_SWAPON_3\nXXX"
cat >> /etc/fstab <<EOF
${swap_path} swap swap defaults 0 0
EOF
echo -e "XXX\n100\n$INFO_TEXT_SWAPON_3$INFO_TEXT_DONE\nXXX"
} | whiptail --title "$INFO_TITLE_SWAPON" --gauge "$INFO_TEXT_SWAPON_0" 8 64 0
}
function _chsource() {
if [[ $mirror == "" ]]; then mirror="us"; fi
if [[ $DISTRO == Debian ]]; then
if [[ "$CODENAME" =~ ("bullseye"|"bookworm") ]]; then
if [[ $mirror == "tuna" ]]; then
cp ${local_setup_template}source.list/debian.new.tuna.template /etc/apt/sources.list
else
cp ${local_setup_template}source.list/debian.new.template /etc/apt/sources.list
sed -i "s/COUNTRY/${mirror}/g" /etc/apt/sources.list
fi
else
if [[ $mirror == "tuna" ]]; then
cp ${local_setup_template}source.list/debian.tuna.template /etc/apt/sources.list
else
cp ${local_setup_template}source.list/debian.template /etc/apt/sources.list
sed -i "s/COUNTRY/${mirror}/g" /etc/apt/sources.list
fi
fi
sed -i "s/RELEASE/${CODENAME}/g" /etc/apt/sources.list
else
if [[ $mirror == "tuna" ]]; then
cp ${local_setup_template}source.list/ubuntu.tuna.template /etc/apt/sources.list
else
cp ${local_setup_template}source.list/ubuntu.template /etc/apt/sources.list
sed -i "s/COUNTRY/${mirror}/g" /etc/apt/sources.list
fi
sed -i "s/RELEASE/${CODENAME}/g" /etc/apt/sources.list
fi
}
function _addPHP() {
if [[ $DISTRO == "Ubuntu" ]]; then
# add php7.4
apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0x5a16e7281be7a449 >/dev/null 2>&1
LC_ALL=en_US.UTF-8 add-apt-repository ppa:ondrej/php -y >/dev/null 2>&1
elif [[ $DISTRO == "Debian" ]]; then
# add php for debian
wget -q https://packages.sury.org/php/apt.gpg -O /etc/apt/trusted.gpg.d/deb.sury.org-php.gpg 2>&1
cat >/etc/apt/sources.list.d/php.list <<DPHP
deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/trusted.gpg.d/deb.sury.org-php.gpg] https://packages.sury.org/php/ $(lsb_release -sc) main
DPHP
fi
DEBIAN_FRONTEND=noninteractive apt-get -yqq -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" update >>"${OUTTO}" 2>&1
# shellcheck disable=SC2154
echo -e "XXX\n12\n${INFO_TEXT_PROGRESS_Extra_1}\nXXX"
DEBIAN_FRONTEND=noninteractive apt-get -yqq -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade --allow-unauthenticated >>"${OUTTO}" 2>&1
# auto solve dpkg lock
if [ "$?" -eq 2 ]; then
rm -f /var/lib/dpkg/updates/0*
locks=$(find /var/lib/dpkg/lock* && find /var/cache/apt/archives/lock*)
if [[ ${locks} == $(find /var/lib/dpkg/lock* && find /var/cache/apt/archives/lock*) ]]; then
for l in ${locks}; do
rm -rf "${l}"
done
{
dpkg --configure -a
DEBIAN_FRONTEND=noninteractive apt-get -yqq -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" update
DEBIAN_FRONTEND=noninteractive apt-get -yqq -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade
} >>"${OUTTO}" 2>&1
fi
if ! (apt-get check >/dev/null); then
apt-get install -f >>"${OUTTO}" 2>&1
if ! (apt-get check >/dev/null); then
whiptail --title "$ERROR_TITLE_INSTALL" --msgbox "$ERROR_TEXT_INSTALL_1" --ok-button "$BUTTON_OK" 8 72
exit 1
fi
fi
fi
}
function _dependency() {
_addPHP
DEPLIST="sudo at bc build-essential curl wget nginx-extras subversion ssl-cert php7.4-cli php7.4-fpm php7.4 php7.4-dev php7.4-memcached memcached php7.4-curl php7.4-gd php7.4-geoip php7.4-json php7.4-mbstring php7.4-opcache php7.4-xml php7.4-xmlrpc php7.4-zip libfcgi0ldbl mcrypt libmcrypt-dev nano unzip htop iotop vnstat vnstati automake make openssl net-tools debconf-utils ntp rsync screenfetch"
for depend in $DEPLIST; do
# shellcheck disable=SC2154
echo -e "XXX\n12\n$INFO_TEXT_PROGRESS_Extra_2${depend}\nXXX"
DEBIAN_FRONTEND=noninteractive apt-get -y install "${depend}" --allow-unauthenticated >>"${OUTTO}" 2>&1
if [[ $? -ne 0 ]]; then
# retry on failure
echo "Retry ${depend}" >>"${OUTTO}"
DEBIAN_FRONTEND=noninteractive apt-get -y install "${depend}" --allow-unauthenticated >>"${OUTTO}" 2>&1 || { local dependError=1; }
fi
if [[ $dependError == "1" ]]; then
whiptail --title "$ERROR_TITLE_INSTALL" --msgbox "${ERROR_TEXT_INSTALL_1}${depend}" 8 64
exit 1
fi
done
}
function _insngx() {
rm -rf /etc/nginx/nginx.conf
cp ${local_setup_template}nginx/nginx.conf.new.template /etc/nginx/nginx.conf
rm -rf /etc/nginx/sites-enabled/default
cp ${local_setup_template}nginx/default.template /etc/nginx/sites-enabled/default
ln -nsf /usr/bin/php7.4 /usr/bin/php
sed -i.bak -e "s/post_max_size.*/post_max_size = 64M/" \
-e "s/upload_max_filesize.*/upload_max_filesize = 92M/" \
-e "s/expose_php.*/expose_php = Off/" \
-e "s/128M/768M/" \
-e "s/;cgi.fix_pathinfo.*/cgi.fix_pathinfo=1/" \
-e "s/;opcache.enable.*/opcache.enable=1/" \
-e "s/;opcache.memory_consumption.*/opcache.memory_consumption=128/" \
-e "s/;opcache.max_accelerated_files.*/opcache.max_accelerated_files=4000/" \
-e "s/;opcache.revalidate_freq.*/opcache.revalidate_freq=240/" /etc/php/7.4/fpm/php.ini
phpenmod -v 7.4 opcache
phpenmod -v 7.4 xml
phpenmod -v 7.4 mbstring
phpenmod -v 7.4 msgpack
phpenmod -v 7.4 memcached
mkdir -p /etc/nginx/ssl/
mkdir -p /etc/nginx/snippets/
mkdir -p /etc/nginx/apps/
chmod 700 /etc/nginx/ssl
cd /etc/nginx/ssl || exit 1
openssl dhparam -out dhparam.pem 2048 >>"${OUTTO}" 2>&1
cp ${local_setup_template}nginx/ssl-params.conf.template /etc/nginx/snippets/ssl-params.conf
cp ${local_setup_template}nginx/proxy.conf.template /etc/nginx/snippets/proxy.conf
# Download nginx fancyindex theme
wget -t3 -T20 -q -O /tmp/fancyindex.zip https://codeload.github.com/Naereen/Nginx-Fancyindex-Theme/zip/refs/heads/master >>"${OUTTO}" 2>&1
unzip -o -j /tmp/fancyindex.zip "Nginx-Fancyindex-Theme-master/Nginx-Fancyindex-Theme-dark/*" -d "/srv/fancyindex" >>"${OUTTO}" 2>&1
cp ${local_setup_template}nginx/fancyindex.conf.template /etc/nginx/snippets/fancyindex.conf
sed -i 's/href="\/[^\/]*/href="\/fancyindex/g' /srv/fancyindex/header.html
sed -i 's/src="\/[^\/]*/src="\/fancyindex/g' /srv/fancyindex/footer.html
# Generate snakeoil certs should they not exists as on some providers
if [[ ! -f /etc/ssl/certs/ssl-cert-snakeoil.pem ]]; then
cp ${local_setup_template}openssl.cnf.template /root/.openssl.cnf
openssl req -config /root/.openssl.cnf -x509 -nodes -days 365 -newkey rsa:1024 -keyout /etc/ssl/private/ssl-cert-snakeoil.key -out /etc/ssl/certs/ssl-cert-snakeoil.pem >/dev/null 2>&1
fi
mkdir -p /var/log/nginx/
chown -R www-data:www-data /var/log/nginx/
systemctl restart nginx
systemctl restart php7.4-fpm
}
function _insnodejs() {
# install Nodejs for background service
cd /tmp || exit 1
curl -sL --retry 3 --retry-max-time 60 https://deb.nodesource.com/setup_18.x -o nodesource_setup.sh
bash nodesource_setup.sh >>"${OUTTO}" 2>&1
exitstatus=$?
counter=0
while [[ ${exitstatus} -eq 1 ]]; do
if [[ ${counter} -gt 2 ]]; then
_errorcolor
echo -e "XXX\n00\n${ERROR_TEXT_NODEJS}\nXXX"
_defaultcolor
echo ">> ${ERROR_TEXT_NODEJS}" >>"${OUTTO}" 2>&1
exit 1
else
bash nodesource_setup.sh >>"${OUTTO}" 2>&1
exitstatus=$?
((counter++))
fi
done
apt-get install -y nodejs >>"${OUTTO}" 2>&1
if [[ -f /tmp/nodesource_setup.sh ]]; then
rm nodesource_setup.sh
fi
}
function _webconsole() {
chmod -x /etc/update-motd.d/*
\cp -f ${local_setup_template}motd/01-custom /etc/update-motd.d/01-custom
chmod +x /etc/update-motd.d/01-custom
# install ttyd and service config
ttyd_binary_url=$(curl -s https://api.github.com/repos/tsl0922/ttyd/releases/latest | jq -r ".assets[] | select(.name | contains(\"$(arch)\")) | .browser_download_url") >>"${OUTTO}" 2>&1
if wget -qO /usr/local/bin/ttyd "${ttyd_binary_url}"; then
echo "ttyd binary download success" >>"${OUTTO}" 2>&1
chmod +x /usr/local/bin/ttyd
else
echo "ttyd binary download failed" >>"${OUTTO}" 2>&1
fi
service ttyd stop >/dev/null 2>&1
rm -f /etc/init.d/ttyd >/dev/null 2>&1
if [[ ! -f /etc/nginx/apps/"${username}".console.conf ]]; then
cat > /etc/nginx/apps/"${username}".console.conf <<WEBC
location /${username}.console/ {
proxy_pass http://127.0.0.1:4200;
rewrite ^/${username}.console(.*) /\$1 break;
auth_basic "password Required";
auth_basic_user_file /etc/htpasswd;
proxy_set_header Upgrade \$http_upgrade;
proxy_set_header Connection "upgrade";
}
WEBC
fi
cp ${local_setup_template}systemd/ttyd.service.template /etc/systemd/system/ttyd.service
sed -i "s/USERNAME/${username}/g" /etc/systemd/system/ttyd.service
# enable ttyd service
systemctl daemon-reload >/dev/null 2>&1
systemctl enable ttyd.service >/dev/null 2>&1
systemctl start ttyd.service >/dev/null 2>&1
# create lock
touch /install/.ttyd.lock
}
function _insdashboard() {
echo -e "XXX\n27\n$INFO_TEXT_PROGRESS_7_1\nXXX"
_insngx
echo -e "XXX\n28\n$INFO_TEXT_PROGRESS_7_2\nXXX"
_insnodejs
echo -e "XXX\n29\n$INFO_TEXT_PROGRESS_7_3\nXXX"
_webconsole
cd && mkdir -p /srv/dashboard
\cp -fR ${local_setup_dashboard}. /srv/dashboard
touch /srv/dashboard/db/output.log
/usr/local/bin/quickbox/system/theme/themeSelect-"${dash_theme}"
IFACE=$(ip link show | grep -i broadcast | grep -m1 UP | cut -d: -f 2 | cut -d@ -f 1 | sed -e 's/ //g')
echo "${IFACE}" >/srv/dashboard/db/interface.txt
sed -i "s/INETFACE/${IFACE}/g" /srv/dashboard/inc/config.php
echo "${username}" >/srv/dashboard/db/master.txt
chown -R www-data: /srv/dashboard
cp ${local_setup_template}nginx/dashboard.conf.template /etc/nginx/apps/dashboard.conf
sed -i "s/\/etc\/htpasswd/\/etc\/htpasswd.d\/htpasswd.${username}/g" /etc/nginx/apps/dashboard.conf
service nginx force-reload >/dev/null 2>&1
case $uilang in
"en")
bash /usr/local/bin/quickbox/system/lang/langSelect-lang_en >/dev/null 2>&1
;;
"zh")
bash /usr/local/bin/quickbox/system/lang/langSelect-lang_zh >/dev/null 2>&1
;;
*)
bash /usr/local/bin/quickbox/system/lang/langSelect-lang_en >/dev/null 2>&1
;;
esac
touch /install/.dashboard.lock
cd /srv/dashboard/ws || exit 1
npm ci --production >>"${OUTTO}" 2>&1
\cp -f ${local_setup_template}systemd/quickbox-ws.service.template /etc/systemd/system/quickbox-ws.service
systemctl daemon-reload >/dev/null 2>&1
systemctl enable quickbox-ws.service >/dev/null 2>&1
systemctl start quickbox-ws.service >/dev/null 2>&1
touch /install/.quickbox-ws.lock
}
function _askapps() {
app_list=$(
whiptail --title "$INFO_TITLE_APPS" --checklist --separate-output --separate-output "$INFO_TEXT_APPS" --ok-button "$BUTTON_OK" --cancel-button "$BUTTON_CANCLE" 16 56 8 \
"rtorrent" "$CHOICE_TEXT_APPS_1" OFF \
"transmission" "$CHOICE_TEXT_APPS_2" OFF \
"qbittorrent" "$CHOICE_TEXT_APPS_3" OFF \
"deluge" "$CHOICE_TEXT_APPS_4" OFF \
"mktorrent" "$CHOICE_TEXT_APPS_5" OFF \
"ffmpeg" "$CHOICE_TEXT_APPS_6" ON \
"filebrowser" "$CHOICE_TEXT_APPS_7" OFF \
"linuxrar" "$CHOICE_TEXT_APPS_8" ON 3>&1 1>&2 2>&3
)
_askrtgui
_askdenytracker
}
function _askbbr() {
enable_bbr=""
while [[ $enable_bbr == "" ]]; do
enable_bbr=$(
whiptail --title "$INFO_TITLE_BBR" --radiolist \
"$INFO_TEXT_BBR" 12 32 4 \
"0" "$CHOICE_TEXT_BBR_1" on \
"1" "$CHOICE_TEXT_BBR_2" off \
3>&1 1>&2 2>&3
)
done
}
function _insbbr() {
bash /usr/local/bin/quickbox/system/auxiliary/install-BBR.sh -l "${OUTTO}" >/dev/null 2>&1
}
function _askrtgui() {
if [[ "$app_list" =~ "rtorrent" ]]; then
rtgui=""
while [[ $rtgui == "" ]]; do
rtgui=$(
whiptail --title "$INFO_TITLE_RTGUI" --radiolist \
"$INFO_TEXT_RTGUI" 12 56 4 \
"rutorrent" "$CHOICE_TEXT_RTGUI_1" off \
"flood" "$CHOICE_TEXT_RTGUI_2" off \
--ok-button "$BUTTON_OK" --cancel-button "$BUTTON_CANCLE" 3>&1 1>&2 2>&3
)
if [[ $rtgui == "" ]]; then
whiptail --title "$ERROR_TITLE_RTGUI" --msgbox "$ERROR_TEXT_RTGUI" --ok-button "$BUTTON_OK" 8 72
fi
done
fi
}
function _insapps() {
if [[ "$app_list" =~ "rtorrent" ]]; then
echo -e "XXX\n30\n$INFO_TEXT_INSTALLAPP_1\nXXX"
bash ${local_setup_script}rtorrent.sh "${OUTTO}" "${rtgui}" "${cdn}" "${rt_ver}" >/dev/null 2>&1
echo -e "XXX\n36\n$INFO_TEXT_INSTALLAPP_1$INFO_TEXT_DONE\nXXX"
else
echo -e "XXX\n36\n$INFO_TEXT_INSTALLAPP_1$INFO_TEXT_SKIP\nXXX"
fi
sleep 1
if [[ "$app_list" =~ "transmission" ]]; then
echo -e "XXX\n36\n$INFO_TEXT_INSTALLAPP_2\nXXX"
bash ${local_setup_script}transmission.sh "${OUTTO}" "${cdn}" "${tr_ver}" >/dev/null 2>&1
echo -e "XXX\n43\n$INFO_TEXT_INSTALLAPP_2$INFO_TEXT_DONE\nXXX"
else
echo -e "XXX\n43\n$INFO_TEXT_INSTALLAPP_2$INFO_TEXT_SKIP\nXXX"
fi
sleep 1
if [[ "$app_list" =~ "qbittorrent" ]]; then
echo -e "XXX\n43\n$INFO_TEXT_INSTALLAPP_3\nXXX"
bash ${local_setup_script}qbittorrent.sh "${OUTTO}" "${cdn}" "${qbit_ver}" "${qbit_libt_ver}" >/dev/null 2>&1
echo -e "XXX\n49\n$INFO_TEXT_INSTALLAPP_3$INFO_TEXT_DONE\nXXX"