-
Notifications
You must be signed in to change notification settings - Fork 33
/
sbfrmsc-dti.sh
1001 lines (879 loc) · 41.9 KB
/
sbfrmsc-dti.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
# Updated for $.broswer-msie error; will populate tracker list properly ; create check/start scripts;
# create crontab entries. Rest is all perfect from Notos. Thanks.
#
# The Seedbox From Scratch Script
# By Notos ---> https://github.com/Notos/
# Modified by dannyti ---> https://github.com/dannyti/
#
######################################################################
#
# Copyright (c) 2013 Notos (https://github.com/Notos/) & dannyti (https://github.com/dannyti/)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
# --> Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
#
######################################################################
#
# git clone -b master https://github.com/Notos/seedbox-from-scratch.git /etc/seedbox-from-scratch
# sudo git stash; sudo git pull
#
apt-get --yes install lsb-release >> $logfile 2>&1
SBFSCURRENTVERSION1=14.06
OS1=$(lsb_release -si)
OSV1=$(lsb_release -rs)
OSV11=$(sed 's/\..*//' /etc/debian_version)
logfile="/dev/null"
#
# Changelog
# Version 14.06 (By dannyti)
# Jan 16 2015
# - RTorrent 0.9.4 supported
# - Openvpn Fixed and Working
# - Autodl tracker list correctly populated
# - Diskspace fixed for multiuser environment
# - Added http Data Download directory for users ; Can be accessed at http://Server-IP/private/Downloads ; Only http://
# - Sitewide https only
# - User Login info can be accessed individually at http://Server-IP/private/SBinfo.txt
# - Mediainfo fixed ; installtion from source
# - Jquery Error corrected
# - Crontab entries made for checking rtorrrent is running and starting it if not running
# - Plowshare Fixed
# - Deprecated seedboxInfo.php
#
# Version 2.1.9 (not stable yet)
# Dec 26 2012 17:37 GMT-3
# - RTorrent 0.9.3 support (optionally installed)
# - New installRTorrent script: move to RTorrent 0.9.3 or back to 0.9.2 at any time
# - Deluge v1.3.6 multi-user installation script (it will install the last stable version): installDeluge
# - Optionally install Deluge when you first install your seedbox-from-scratch box
#
# Version 2.1.8 (stable)
# - Bug fix release
#
# Version 2.1.4 (stable)
# Dec 11 2012 2:34 GMT-3
# - Debian 6 (Squeeze) Compatibile
# - Check if user root is running the script
# - vsftpd - FTP access with SSL (AUTH SSL - Explicit)
# - vsftpd downgraded on Ubuntu to 2.3.2 (oneiric)
# - iptables tweaked to make OpenVPN work as it should both on Ubuntu and Debian
# - SABnzbd is now being installed from sources and works better
# - New script: changeUserPassword <username> <password> <realm> --- example: changeUserPassword notos 133t rutorrent
# - restartSeedbox now kill processes even if there are users attached on screens
# - Installs rar, unrar and zip separately from main installations to prevent script from breaking on bad sources from non-OVH providers
#
# Version 2.1.2 (stable)
# Nov 16 2012 20:48 GMT-3
# - new upgradeSeedbox script (to download git files for a new version, it will not really upgrade it, at least for now :)
# - ruTorrent fileshare Plugin (http://forums.rutorrent.org/index.php?topic=705.0)
# - rapidleech (http://www.rapidleech.com/ - http://www.rapidleech.com/index.php?showtopic=2226|Go ** tutorial: http://www.seedm8.com/members/knowledgebase/24/Installing-Rapidleech-on-your-Seedbox.html
#
# Version 2.1.1 (stable)
# Nov 12 2012 20:15
# - OpenVPN was not working as expected (fixed)
# - OpenVPN port now is configurable (at main install) and you can change it anytime before reinstalling: /etc/seedbox-from-scratch/openvpn.info
#
# Version 2.1.0 (not stable yet)
# Nov 11 2012 20:15
# - sabnzbd: http://wiki.sabnzbd.org/install-ubuntu-repo
# - restartSeedbox script for each user
# - User info files in /etc/seedbox-from-scratch/users
# - Info about all users in https://hostname.tld/seedboxInfo.php
# - Password protected webserver Document Root (/var/www/)
#
# Version 2.0.0 (stable)
# Oct 31 2012 23:59
# - chroot jail for users, using JailKit (http://olivier.sessink.nl/jailkit/)
# - Fail2ban for ssh and apache - it bans IPs that show the malicious signs -- too many password failures, seeking for exploits, etc.
# - OpenVPN (after install you can download your key from http://<IP address or host name of your box>/rutorrent/vpn.zip)
# - createSeedboxUser script now asks if you want your user jailed, to have SSH access and if it should be added to sudoers
# - Optionally install packages JailKit, Webmin, Fail2ban and OpenVPN
# - Choose between RTorrent 0.8.9 and 0.9.2 (and their respective libtorrent libraries)
# - Upgrade and downgrade RTorrent at any time
# - Full automated install, now you just have to download script and run it in your box:
# > wget -N https://raw.github.com/Notos/seedbox-from-scratch/v2.x.x/seedbox-from-scratch.sh
# > time bash ~/seedbox-from-scratch.sh
# - Due to a recent outage of Webmin site and SourceForge's svn repositories, some packages are now in git and will not be downloaded from those sites
# - Updated list of trackers in Autodl-irssi
# - vsftpd FTP Server (working in chroot jail)
# - New ruTorrent default theme: Oblivion
#
# Version 1.30
# Oct 23 2012 04:54:29
# - Scripts now accept a full install without having to create variables and do anything else
#
# Version 1.20
# Oct 19 2012 03:24 (by Notos)
# - Install OpenVPN - (BETA) Still not in the script, just an outside script
# Tested client: http://openvpn.net/index.php?option=com_content&id=357
#
# Version 1.11
# Oct 18 2012 05:13 (by Notos)
# - Added scripts to downgrade and upgrade RTorrent
#
# - Added all supported plowshare sites into fileupload plugin: 115, 1fichier, 2shared, 4shared, bayfiles, bitshare, config, cramit, data_hu, dataport_cz,
# depositfiles, divshare, dl_free_fr, euroshare_eu, extabit, filebox, filemates, filepost, freakshare, go4up, hotfile, mediafire, megashares, mirrorcreator, multiupload, netload_in,
# oron, putlocker, rapidgator, rapidshare, ryushare, sendspace, shareonline_biz, turbobit, uploaded_net, uploadhero, uploading, uptobox, zalaa, zippyshare
#
# Version 1.10
# 06/10/2012 14:18 (by Notos)
# - Added Fileupload plugin
#
# - Added all supported plowshare sites into fileupload plugin: 115, 1fichier, 2shared, 4shared, bayfiles, bitshare, config, cramit, data_hu, dataport_cz,
# depositfiles, divshare, dl_free_fr, euroshare_eu, extabit, filebox, filemates, filepost, freakshare, go4up, hotfile, mediafire, megashares, mirrorcreator, multiupload, netload_in,
# oron, putlocker, rapidgator, rapidshare, ryushare, sendspace, shareonline_biz, turbobit, uploaded_net, uploadhero, uploading, uptobox, zalaa, zippyshare
#
# Version 1.00
# 30/09/2012 14:18 (by Notos)
# - Changing some file names and depoying version 1.00
#
# Version 0.99b
# 27/09/2012 19:39 (by Notos)
# - Quota for users
# - Download dir inside user home
#
# Version 0.99a
# 27/09/2012 19:39 (by Notos)
# - Quota for users
# - Download dir inside user home
#
# Version 0.92a
# 28/08/2012 19:39 (by Notos)
# - Also working on Debian now
#
# Version 0.91a
# 24/08/2012 19:39 (by Notos)
# - First multi-user version sent to public
#
# Version 0.90a
# 22/08/2012 19:39 (by Notos)
# - Working version for OVH Kimsufi 2G Server - Ubuntu Based
#
# Version 0.89a
# 17/08/2012 19:39 (by Notos)
#
function getString
{
local ISPASSWORD=$1
local LABEL=$2
local RETURN=$3
local DEFAULT=$4
local NEWVAR1=a
local NEWVAR2=b
local YESYES=YESyes
local NONO=NOno
local YESNO=$YESYES$NONO
while [ ! $NEWVAR1 = $NEWVAR2 ] || [ -z "$NEWVAR1" ];
do
clear
echo "#"
echo "#"
echo "# The Seedbox From Scratch Script"
echo "# By Notos ---> https://github.com/Notos/"
echo "# Modified by dannyti ---> https://github.com/dannyti/"
echo "#"
echo "#"
echo
if [ "$ISPASSWORD" == "YES" ]; then
read -s -p "$DEFAULT" -p "$LABEL" NEWVAR1
else
read -e -i "$DEFAULT" -p "$LABEL" NEWVAR1
fi
if [ -z "$NEWVAR1" ]; then
NEWVAR1=a
continue
fi
if [ ! -z "$DEFAULT" ]; then
if grep -q "$DEFAULT" <<< "$YESNO"; then
if grep -q "$NEWVAR1" <<< "$YESNO"; then
if grep -q "$NEWVAR1" <<< "$YESYES"; then
NEWVAR1=YES
else
NEWVAR1=NO
fi
else
NEWVAR1=a
fi
fi
fi
if [ "$NEWVAR1" == "$DEFAULT" ]; then
NEWVAR2=$NEWVAR1
else
if [ "$ISPASSWORD" == "YES" ]; then
echo
read -s -p "Retype: " NEWVAR2
else
read -p "Retype: " NEWVAR2
fi
if [ -z "$NEWVAR2" ]; then
NEWVAR2=b
continue
fi
fi
if [ ! -z "$DEFAULT" ]; then
if grep -q "$DEFAULT" <<< "$YESNO"; then
if grep -q "$NEWVAR2" <<< "$YESNO"; then
if grep -q "$NEWVAR2" <<< "$YESYES"; then
NEWVAR2=YES
else
NEWVAR2=NO
fi
else
NEWVAR2=a
fi
fi
fi
echo "---> $NEWVAR2"
done
eval $RETURN=\$NEWVAR1
}
# 0.
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root" 1>&2
exit 1
fi
export DEBIAN_FRONTEND=noninteractive
clear
# 1.
#localhost is ok this rtorrent/rutorrent installation
IPADDRESS1=`ifconfig | sed -n 's/.*inet addr:\([0-9.]\+\)\s.*/\1/p' | grep -v 127 | head -n 1`
CHROOTJAIL1=NO
#those passwords will be changed in the next steps
PASSWORD1=a
PASSWORD2=b
getString NO "You need to create an user for your seedbox: " NEWUSER1
getString YES "Password for user $NEWUSER1: " PASSWORD1
getString NO "IP address of your box: " IPADDRESS1 $IPADDRESS1
getString NO "SSH port: " NEWSSHPORT1 21976
getString NO "vsftp port (usually 21): " NEWFTPPORT1 21201
getString NO "OpenVPN port: " OPENVPNPORT1 31195
#getString NO "Do you want to have some of your users in a chroot jail? " CHROOTJAIL1 YES
getString NO "Install Webmin? " INSTALLWEBMIN1 YES
getString NO "Install Fail2ban? " INSTALLFAIL2BAN1 YES
getString NO "Install OpenVPN? " INSTALLOPENVPN1 NO
getString NO "Install SABnzbd? " INSTALLSABNZBD1 NO
getString NO "Install Rapidleech? " INSTALLRAPIDLEECH1 NO
getString NO "Install Deluge? " INSTALLDELUGE1 NO
getString NO "Wich RTorrent version would you like to install, '0.9.3' or '0.9.4' or '0.9.6'? " RTORRENT1 0.9.6
if [ "$RTORRENT1" != "0.9.3" ] && [ "$RTORRENT1" != "0.9.6" ] && [ "$RTORRENT1" != "0.9.4" ]; then
echo "$RTORRENT1 typed is not 0.9.6 or 0.9.4 or 0.9.3!"
exit 1
fi
if [ "$OSV1" = "14.04" ]; then
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 40976EAF437D05B5 >> $logfile 2>&1
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3B4FE6ACC0B21F32 >> $logfile 2>&1
fi
echo -e "\033[0;32;148m18 Minutes to go... .. .\033[39m"
apt-get --yes update >> $logfile 2>&1
apt-get --yes install whois sudo makepasswd nano >> $logfile 2>&1
apt-get --yes install git >> $logfile 2>&1
echo -e "\033[0;32;148m.............\033[39m"
rm -f -r /etc/seedbox-from-scratch >> $logfile 2>&1
git clone -b v$SBFSCURRENTVERSION1 https://github.com/dannyti/seedbox-from-scratch.git /etc/seedbox-from-scratch >> $logfile 2>&1
mkdir -p cd /etc/seedbox-from-scratch/source
mkdir -p cd /etc/seedbox-from-scratch/users
echo -e "\033[0;32;148mWork in progress.........\033[39m"
if [ ! -f /etc/seedbox-from-scratch/seedbox-from-scratch.sh ]; then
echo ""
echo Looks like something is wrong, this script was not able to download its whole git repository.
echo "git could not be installed :/ "
echo "Do : apt-get update && apt-get --yes install git "
echo " Then run script again. "
exit 1
fi
# 3.1
#show all commands
#set -x verbose
# 4.
perl -pi -e "s/Port 22/Port $NEWSSHPORT1/g" /etc/ssh/sshd_config
perl -pi -e "s/PermitRootLogin yes/PermitRootLogin no/g" /etc/ssh/sshd_config
perl -pi -e "s/#Protocol 2/Protocol 2/g" /etc/ssh/sshd_config
perl -pi -e "s/X11Forwarding yes/X11Forwarding no/g" /etc/ssh/sshd_config
groupadd sshdusers
groupadd sftponly
echo -e "\033[0;32;148mPlease Standby................\033[39m"
mkdir -p /usr/share/terminfo/l/
cp /lib/terminfo/l/linux /usr/share/terminfo/l/
#echo '/usr/lib/openssh/sftp-server' >> /etc/shells
#if [ "$OS1" = "Ubuntu" ]; then
echo "" | tee -a /etc/ssh/sshd_config > /dev/null
echo "UseDNS no" | tee -a /etc/ssh/sshd_config > /dev/null
echo "AllowGroups sshdusers root" >> /etc/ssh/sshd_config
echo "Match Group sftponly" >> /etc/ssh/sshd_config
echo "ChrootDirectory %h" >> /etc/ssh/sshd_config
echo "ForceCommand internal-sftp" >> /etc/ssh/sshd_config
echo "AllowTcpForwarding no" >> /etc/ssh/sshd_config
#fi
service ssh reload >> $logfile 2>&1
# 6.
#remove cdrom from apt so it doesn't stop asking for it
perl -pi -e "s/deb cdrom/#deb cdrom/g" /etc/apt/sources.list
perl -pi.orig -e 's/^(deb .* universe)$/$1 multiverse/' /etc/apt/sources.list
#add non-free sources to Debian Squeeze# those two spaces below are on purpose
perl -pi -e "s/squeeze main/squeeze main contrib non-free/g" /etc/apt/sources.list
perl -pi -e "s/squeeze-updates main/squeeze-updates main contrib non-free/g" /etc/apt/sources.list
echo -e "\033[0;32;148mI am installing random stuff, Do you like coffee ?\033[39m"
#apt-get --yes install python-software-properties
#Adding debian pkgs for adding repo and installing ffmpeg
apt-get --yes install software-properties-common >> $logfile 2>&1
if [ "$OSV11" = "8" ]; then
apt-add-repository --yes "deb http://www.deb-multimedia.org jessie main non-free" >> $logfile 2>&1
apt-get update >> $logfile 2>&1
apt-get --force-yes --yes install ffmpeg >> $logfile 2>&1
fi
echo -e "\033[0;32;148m.....\033[39m"
# 7.
# update and upgrade packages
apt-get --yes install python-software-properties software-properties-common >> $logfile 2>&1
if [ "$OSV1" = "14.04" ] || [ "$OSV1" = "15.04" ] || [ "$OSV1" = "15.10" ] || [ "$OSV1" = "16.04" ] || [ "$OSV1" = "14.10" ]; then
apt-add-repository --yes ppa:kirillshkrogalev/ffmpeg-next >> $logfile 2>&1
fi
apt-get --yes update >> $logfile 2>&1
apt-get --yes upgrade >> $logfile 2>&1
# 8.
#install all needed packages
apt-get --yes install apache2 apache2-utils autoconf build-essential ca-certificates comerr-dev curl cfv quota mktorrent dtach htop irssi libcloog-ppl-dev libcppunit-dev libcurl3 libcurl4-openssl-dev libncurses5-dev libterm-readline-gnu-perl libsigc++-2.0-dev libperl-dev openvpn libssl-dev libtool libxml2-dev ncurses-base ncurses-term ntp openssl patch libc-ares-dev pkg-config pkg-config python-scgi ssl-cert subversion texinfo unzip zlib1g-dev expect flex bison debhelper binutils-gold libarchive-zip-perl libnet-ssleay-perl libhtml-parser-perl libxml-libxml-perl libjson-perl libjson-xs-perl libxml-libxslt-perl libxml-libxml-perl libjson-rpc-perl libarchive-zip-perl tcpdump >> $logfile 2>&1
if [ $? -gt 0 ]; then
echo
echo
echo *** ERROR ***
echo
echo "Looks like something is wrong with apt-get install, aborting."
echo
exit 1
fi
apt-get --yes install libapache2-mod-php5 php5 php5-cli php5-dev php5-curl php5-geoip php5-mcrypt php5-gd php5-xmlrpc >> $logfile 2>&1
if [ "$OSV1" = "16.04" ]; then
apt-get --yes install php libapache2-mod-php php-mcrypt php-mysql php-xml >> $logfile 2>&1
fi
apt-get install screen >> $logfile 2>&1
apt-get --yes install zip >> $logfile 2>&1
apt-get --yes install ffmpeg >> $logfile 2>&1
apt-get --yes install automake1.9 >> $logfile 2>&1
apt-get --force-yes --yes install rar >> $logfile 2>&1
if [ $? -gt 0 ]; then
apt-get --yes install rar-free >> $logfile 2>&1
fi
#apt-get --yes install unrar
#if [ $? -gt 0 ]; then
# apt-get --yes install unrar-free
#fi
#if [ "$OSV11" = "8" ]; then
# apt-get --yes install unrar-free >> $logfile 2>&1
#fi
apt-get --yes install dnsutils >> $logfile 2>&1
if [ "$CHROOTJAIL1" = "YES" ]; then
cd /etc/seedbox-from-scratch
tar xvfz jailkit-2.15.tar.gz -C /etc/seedbox-from-scratch/source/ >> $logfile 2>&1
cd source/jailkit-2.15
./debian/rules binary
cd ..
dpkg -i jailkit_2.15-1_*.deb >> $logfile 2>&1
cp /etc/jailkit/jk_init.ini /etc/jailkit/jk_init.ini.original
echo "" | tee -a /etc/jailkit/jk_init.ini >> /dev/null
bash /etc/seedbox-from-scratch/updatejkinit >> $logfile 2>&1
fi
echo -e "\033[0;32;148mGo make coffee......\033[39m"
# 8.1 additional packages for Ubuntu
# this is better to be apart from the others
apt-get --yes install php5-fpm >> $logfile 2>&1
apt-get --yes install php5-xcache libxml2-dev >> $logfile 2>&1
if [ "$OSV1" = "13.10" ]; then
apt-get install php5-json
fi
#Check if its Debian and do a sysvinit by upstart replacement:
#Commented the follwoing three lines for testing
#if [ "$OS1" = "Debian" ]; then
# echo 'Yes, do as I say!' | apt-get -y --force-yes install upstart
#fi
# 8.3 Generate our lists of ports and RPC and create variables
#permanently adding scripts to PATH to all users and root
echo "PATH=$PATH:/etc/seedbox-from-scratch:/sbin" | tee -a /etc/profile > /dev/null
echo "export PATH" | tee -a /etc/profile > /dev/null
echo "PATH=$PATH:/etc/seedbox-from-scratch:/sbin" | tee -a /root/.bashrc > /dev/null
echo "export PATH" | tee -a /root/.bashrc > /dev/null
rm -f /etc/seedbox-from-scratch/ports.txt
for i in $(seq 51101 51999)
do
echo "$i" | tee -a /etc/seedbox-from-scratch/ports.txt > /dev/null
done
rm -f /etc/seedbox-from-scratch/rpc.txt
for i in $(seq 2 1000)
do
echo "RPC$i" | tee -a /etc/seedbox-from-scratch/rpc.txt > /dev/null
done
# 8.4
if [ "$INSTALLWEBMIN1" = "YES" ]; then
echo "deb http://download.webmin.com/download/repository sarge contrib" | tee -a /etc/apt/sources.list > /dev/null
wget -q http://www.webmin.com/jcameron-key.asc -O- | sudo apt-key add - >> $logfile 2>&1
apt-get update >> $logfile 2>&1
apt-get install -y webmin >> $logfile 2>&1
fi
#if [ "$INSTALLWEBMIN1" = "YES" ]; then
# #if webmin isup, download key
# WEBMINDOWN=YES
# ping -c1 -w2 www.webmin.com > /dev/null
# if [ $? = 0 ] ; then
# wget -t 5 http://www.webmin.com/jcameron-key.asc >> $logfile 2>&1
# apt-key add jcameron-key.asc >> $logfile 2>&1
# if [ $? = 0 ] ; then
# WEBMINDOWN=NO
# fi
# fi
#
# if [ "$WEBMINDOWN"="NO" ] ; then
# #add webmin source
# echo "" | tee -a /etc/apt/sources.list > /dev/null
# echo "deb http://download.webmin.com/download/repository sarge contrib" | tee -a /etc/apt/sources.list > /dev/null
# cd /tmp
# fi
#
# if [ "$WEBMINDOWN" = "NO" ]; then
# apt-get --yes update >> $logfile 2>&1
# apt-get --yes install webmin >> $logfile 2>&1
# fi
#fi
echo -e "\033[0;32;148m.........\033[39m"
# 9.
a2enmod ssl >> $logfile 2>&1
a2enmod auth_digest >> $logfile 2>&1
a2enmod reqtimeout >> $logfile 2>&1
a2enmod rewrite >> $logfile 2>&1
#a2enmod scgi ############### if we cant make python-scgi works
#cd /etc/apache2
#rm apache2.conf
#wget --no-check-certificate https://raw.githubusercontent.com/dannyti/sboxsetup/master/apache2.conf
cat /etc/seedbox-from-scratch/add2apache2.conf >> /etc/apache2/apache2.conf
# 10.
#remove timeout if there are any
perl -pi -e "s/^Timeout [0-9]*$//g" /etc/apache2/apache2.conf
echo "" | tee -a /etc/apache2/apache2.conf > /dev/null
echo "#seedbox values" | tee -a /etc/apache2/apache2.conf > /dev/null
echo "" | tee -a /etc/apache2/apache2.conf > /dev/null
echo "" | tee -a /etc/apache2/apache2.conf > /dev/null
echo "ServerSignature Off" | tee -a /etc/apache2/apache2.conf > /dev/null
echo "ServerTokens Prod" | tee -a /etc/apache2/apache2.conf > /dev/null
echo "Timeout 30" | tee -a /etc/apache2/apache2.conf > /dev/null
cd /etc/apache2
rm ports.conf
wget --no-check-certificate https://raw.githubusercontent.com/dannyti/sboxsetup/master/ports.conf >> $logfile 2>&1
service apache2 restart >> $logfile 2>&1
mkdir /etc/apache2/auth.users
echo "$IPADDRESS1" > /etc/seedbox-from-scratch/hostname.info
# 11.
makepasswd | tee -a /etc/seedbox-from-scratch/sslca.info > /dev/null
export TEMPHOSTNAME1=tsfsSeedBox
export CERTPASS1=@@$TEMPHOSTNAME1.$NEWUSER1.ServerP7s$
export NEWUSER1
export IPADDRESS1
echo "$NEWUSER1" > /etc/seedbox-from-scratch/mainuser.info
echo "$CERTPASS1" > /etc/seedbox-from-scratch/certpass.info
bash /etc/seedbox-from-scratch/createOpenSSLCACertificate >> $logfile 2>&1
mkdir -p /etc/ssl/private/
openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout /etc/ssl/private/vsftpd.pem -out /etc/ssl/private/vsftpd.pem -config /etc/seedbox-from-scratch/ssl/CA/caconfig.cnf >> $logfile 2>&1
if [ "$OSV11" = "7" ]; then
echo "deb http://ftp.cyconet.org/debian wheezy-updates main non-free contrib" >> /etc/apt/sources.list.d/wheezy-updates.cyconet.list
apt-get update >> $logfile 2>&1
apt-get install -y --force-yes -t wheezy-updates debian-cyconet-archive-keyring vsftpd libxml2-dev libcurl4-gnutls-dev subversion >> $logfile 2>&1
elif [ "$OSV1" = "12.04" ]; then
add-apt-repository -y ppa:thefrontiergroup/vsftpd
apt-get update >> $logfile 2>&1
apt-get -y install vsftpd >> $logfile 2>&1
else
apt-get -y install vsftpd >> $logfile 2>&1
fi
#if [ "$OSV1" = "12.04" ]; then
# dpkg -i /etc/seedbox-from-scratch/vsftpd_2.3.2-3ubuntu5.1_`uname -m`.deb
#fi
perl -pi -e "s/anonymous_enable\=YES/\#anonymous_enable\=YES/g" /etc/vsftpd.conf
perl -pi -e "s/connect_from_port_20\=YES/#connect_from_port_20\=YES/g" /etc/vsftpd.conf
perl -pi -e 's/rsa_private_key_file/#rsa_private_key_file/' /etc/vsftpd.conf
perl -pi -e 's/rsa_cert_file/#rsa_cert_file/' /etc/vsftpd.conf
#perl -pi -e "s/rsa_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem/#rsa_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem/g" /etc/vsftpd.conf
#perl -pi -e "s/rsa_private_key_file=/etc/ssl/private/ssl-cert-snakeoil.key/#rsa_private_key_file=/etc/ssl/private/ssl-cert-snakeoil.key/g" /etc/vsftpd.conf
echo "listen_port=$NEWFTPPORT1" | tee -a /etc/vsftpd.conf >> /dev/null
echo "ssl_enable=YES" | tee -a /etc/vsftpd.conf >> /dev/null
echo "allow_anon_ssl=YES" | tee -a /etc/vsftpd.conf >> /dev/null
echo "force_local_data_ssl=NO" | tee -a /etc/vsftpd.conf >> /dev/null
echo "force_local_logins_ssl=NO" | tee -a /etc/vsftpd.conf >> /dev/null
echo "ssl_tlsv1=YES" | tee -a /etc/vsftpd.conf >> /dev/null
echo "ssl_sslv2=NO" | tee -a /etc/vsftpd.conf >> /dev/null
echo "ssl_sslv3=NO" | tee -a /etc/vsftpd.conf >> /dev/null
echo "require_ssl_reuse=NO" | tee -a /etc/vsftpd.conf >> /dev/null
echo "ssl_ciphers=HIGH" | tee -a /etc/vsftpd.conf >> /dev/null
echo "rsa_cert_file=/etc/ssl/private/vsftpd.pem" | tee -a /etc/vsftpd.conf >> /dev/null
echo "local_enable=YES" | tee -a /etc/vsftpd.conf >> /dev/null
echo "write_enable=YES" | tee -a /etc/vsftpd.conf >> /dev/null
echo "local_umask=022" | tee -a /etc/vsftpd.conf >> /dev/null
echo "chroot_local_user=YES" | tee -a /etc/vsftpd.conf >> /dev/null
echo "chroot_list_file=/etc/vsftpd.chroot_list" | tee -a /etc/vsftpd.conf >> /dev/null
echo "passwd_chroot_enable=YES" | tee -a /etc/vsftpd.conf >> /dev/null
echo "allow_writeable_chroot=YES" | tee -a /etc/vsftpd.conf >> /dev/null ## Had to remove since patched applied by vsftpd devs
#echo "seccomp_sandbox=NO" | tee -a /etc/vsftpd.conf >> /dev/null ## Had to remove since patched applied by vsftpd devs
#echo "dual_log_enable=YES" | tee -a /etc/vsftpd.conf >> /dev/null
#echo "syslog_enable=NO" | tee -a /etc/vsftpd.conf >> /dev/null
#sed -i '147 d' /etc/vsftpd.conf
#sed -i '149 d' /etc/vsftpd.conf
touch /var/log/vsftpd.log
apt-get install --yes subversion >> $logfile 2>&1
apt-get install --yes dialog >> $logfile 2>&1
# 13.
if [ "$OSV1" = "14.04" ] || [ "$OSV1" = "14.10" ] || [ "$OSV1" = "15.04" ] || [ "$OSV1" = "15.10" ] || [ "$OSV1" = "16.04" ] || [ "$OSV11" = "8" ]; then
cp /var/www/html/index.html /var/www/index.html
mv /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/000-default.conf.ORI
rm -f /etc/apache2/sites-available/000-default.conf
cp /etc/seedbox-from-scratch/etc.apache2.default.template /etc/apache2/sites-available/000-default.conf
perl -pi -e "s/http\:\/\/.*\/rutorrent/http\:\/\/$IPADDRESS1\/rutorrent/g" /etc/apache2/sites-available/000-default.conf
perl -pi -e "s/<servername>/$IPADDRESS1/g" /etc/apache2/sites-available/000-default.conf
perl -pi -e "s/<username>/$NEWUSER1/g" /etc/apache2/sites-available/000-default.conf
else
mv /etc/apache2/sites-available/default /etc/apache2/sites-available/default.ORI
rm -f /etc/apache2/sites-available/default
cp /etc/seedbox-from-scratch/etc.apache2.default.template /etc/apache2/sites-available/default
perl -pi -e "s/http\:\/\/.*\/rutorrent/http\:\/\/$IPADDRESS1\/rutorrent/g" /etc/apache2/sites-available/default
perl -pi -e "s/<servername>/$IPADDRESS1/g" /etc/apache2/sites-available/default
perl -pi -e "s/<username>/$NEWUSER1/g" /etc/apache2/sites-available/default
fi
#mv /etc/apache2/sites-available/default /etc/apache2/sites-available/default.ORI
#rm -f /etc/apache2/sites-available/default
#cp /etc/seedbox-from-scratch/etc.apache2.default.template /etc/apache2/sites-available/default
#perl -pi -e "s/http\:\/\/.*\/rutorrent/http\:\/\/$IPADDRESS1\/rutorrent/g" /etc/apache2/sites-available/default
#perl -pi -e "s/<servername>/$IPADDRESS1/g" /etc/apache2/sites-available/default
#perl -pi -e "s/<username>/$NEWUSER1/g" /etc/apache2/sites-available/default
echo "ServerName $IPADDRESS1" | tee -a /etc/apache2/apache2.conf > /dev/null
echo -e "\033[0;32;148mHow was the coffee ?\033[39m"
# 14.
a2ensite default-ssl >> $logfile 2>&1
#ln -s /etc/apache2/mods-available/scgi.load /etc/apache2/mods-enabled/scgi.load
#service apache2 restart
#apt-get --yes install libxmlrpc-core-c3-dev
#14.1 Download xmlrpc, rtorrent & libtorrent for 0.9.4
#cd
#svn co https://svn.code.sf.net/p/xmlrpc-c/code/stable /etc/seedbox-from-scratch/source/xmlrpc
cd /etc/seedbox-from-scratch/
#wget -c http://libtorrent.rakshasa.no/downloads/rtorrent-0.9.4.tar.gz
#wget -c http://libtorrent.rakshasa.no/downloads/libtorrent-0.13.4.tar.gz
wget -c http://rtorrent.net/downloads/rtorrent-0.9.4.tar.gz >> $logfile 2>&1
wget -c http://rtorrent.net/downloads/libtorrent-0.13.4.tar.gz >> $logfile 2>&1
wget -c http://rtorrent.net/downloads/rtorrent-0.9.6.tar.gz >> $logfile 2>&1
wget -c http://rtorrent.net/downloads/libtorrent-0.13.6.tar.gz >> $logfile 2>&1
#configure & make xmlrpc BASED ON RTORRENT VERSION
if [ "$RTORRENT1" = "0.9.4" ] || [ "$RTORRENT1" = "0.9.6" ]; then
tar xvfz /etc/seedbox-from-scratch/xmlrpc-c-1.33.17.tgz -C /etc/seedbox-from-scratch/ >> $logfile 2>&1
cd /etc/seedbox-from-scratch/xmlrpc-c-1.33.17
./configure --prefix=/usr --enable-libxml2-backend --disable-libwww-client --disable-wininet-client --disable-abyss-server --disable-cgi-server >> $logfile 2>&1
make -j$(grep -c ^processor /proc/cpuinfo) >> $logfile 2>&1
make install >> $logfile 2>&1
else
tar xvfz /etc/seedbox-from-scratch/xmlrpc-c-1.16.42.tgz -C /etc/seedbox-from-scratch/source/ >> $logfile 2>&1
cd /etc/seedbox-from-scratch/source/
unzip ../xmlrpc-c-1.31.06.zip >> $logfile 2>&1
cd xmlrpc-c-1.31.06
./configure --prefix=/usr --enable-libxml2-backend --disable-libwww-client --disable-wininet-client --disable-abyss-server --disable-cgi-server >> $logfile 2>&1
make -j$(grep -c ^processor /proc/cpuinfo) >> $logfile 2>&1
make install >> $logfile 2>&1
fi
# 15.
# 16.
#cd xmlrpc-c-1.16.42 ### old, but stable, version, needs a missing old types.h file
#ln -s /usr/include/curl/curl.h /usr/include/curl/types.h
# 21.
echo -e "\033[0;32;148mDo not give up on me.........Still Working....\033[39m"
bash /etc/seedbox-from-scratch/installRTorrent $RTORRENT1 >> $logfile 2>&1
######### Below this /var/www/rutorrent/ has been replaced with /var/www/rutorrent for Ubuntu 14.04
echo -e "\033[0;32;148mNo kidding.... Did you make coffee ?\033[39m"
# 22.
cd /var/www/
rm -f -r rutorrent
git clone https://github.com/Novik/ruTorrent rutorrent >> $logfile 2>&1
cp /etc/seedbox-from-scratch/action.php.template /var/www/rutorrent/plugins/diskspace/action.php
groupadd admin >> $logfile 2>&1
echo "www-data ALL=(root) NOPASSWD: /usr/sbin/repquota" | tee -a /etc/sudoers > /dev/null
cp /etc/seedbox-from-scratch/favicon.ico /var/www/
# 26. Installing Mediainfo from source
apt-get install --yes mediainfo >> $logfile 2>&1
if [ $? -gt 0 ]; then
cd /tmp
wget http://downloads.sourceforge.net/mediainfo/MediaInfo_CLI_0.7.56_GNU_FromSource.tar.bz2 >> $logfile 2>&1
tar jxvf MediaInfo_CLI_0.7.56_GNU_FromSource.tar.bz2 >> $logfile 2>&1
cd MediaInfo_CLI_GNU_FromSource/
sh CLI_Compile.sh >> $logfile 2>&1
cd MediaInfo/Project/GNU/CLI
make install >> $logfile 2>&1
fi
#cd /var/www/rutorrent/js/
#git clone https://github.com/gabceb/jquery-browser-plugin.git >> $logfile 2>&1
#mv jquery-browser-plugin/dist/jquery.browser.js .
#rm -r -f jquery-browser-plugin
#sed -i '31i\<script type=\"text/javascript\" src=\"./js/jquery.browser.js\"></script> ' /var/www/rutorrent/index.html
cd /var/www/rutorrent/plugins
git clone https://github.com/autodl-community/autodl-rutorrent.git autodl-irssi >> $logfile 2>&1
#cp autodl-irssi/_conf.php autodl-irssi/conf.php
#svn co https://svn.code.sf.net/p/autodl-irssi/code/trunk/rutorrent/autodl-irssi/
cd autodl-irssi
# 30.
# 31. ZNC
#Have put this in script form
# 32. Installing poweroff button on ruTorrent
cd /var/www/rutorrent/plugins/
wget http://rutorrent-logoff.googlecode.com/files/logoff-1.0.tar.gz >> $logfile 2>&1
tar -zxf logoff-1.0.tar.gz >> $logfile 2>&1
rm -f logoff-1.0.tar.gz
if [ "$INSTALLFAIL2BAN1" = "YES" ]; then
apt-get --yes install fail2ban >> $logfile 2>&1
if [ "$OS1" = "Ubuntu" ]; then
mv /etc/fail2ban/jail.conf /etc/fail2ban/jail.conf.original
cp /etc/seedbox-from-scratch/ubu.etc.fail2ban.jail.conf.template /etc/fail2ban/jail.conf
elif [ "$OS1" = "Debian" ]; then
mv /etc/fail2ban/jail.conf /etc/fail2ban/jail.conf.original
cp /etc/seedbox-from-scratch/deb.etc.fail2ban.jail.conf.template /etc/fail2ban/jail.conf
fi
fail2ban-client reload >> $logfile 2>&1
fi
#33. Tuning Part - Let me know if you find more.
echo "vm.swappiness=1" >>/etc/sysctl.conf
echo "net.core.somaxconn = 1024" >>/etc/sysctl.conf
echo "net.core.netdev_max_backlog = 50000" >>/etc/sysctl.conf
echo "net.ipv4.tcp_max_tw_buckets = 2000000" >>/etc/sysctl.conf
echo "net.core.rmem_max = 25165824" >>/etc/sysctl.conf
echo "net.core.wmem_max = 25165824" >>/etc/sysctl.conf
echo "net.core.rmem_default = 25165824" >>/etc/sysctl.conf
echo "net.core.wmem_default = 25165824" >>/etc/sysctl.conf
echo "net.core.optmem_max = 25165824" >> /etc/sysctl.conf
echo "net.ipv4.tcp_wmem = 20480 12582912 25165824" >>/etc/sysctl.conf
echo "net.ipv4.tcp_rmem = 20480 12582912 25165824" >>/etc/sysctl.conf
echo "net.ipv4.tcp_max_syn_backlog = 65536" >>/etc/sysctl.conf
echo "net.ipv4.tcp_slow_start_after_idle = 0" >>/etc/sysctl.conf
echo "net.ipv4.tcp_tw_reuse = 1" >>/etc/sysctl.conf
echo "net.ipv4.ip_local_port_range = 10240 65535" >>/etc/sysctl.conf
echo "fs.file-max = 2097152" >>/etc/sysctl.conf
echo "vm.min_free_kbytes = 1024" >> /etc/sysctl.conf
echo "net.ipv4.tcp_rfc1337 = 1" >> /etc/sysctl.conf
echo "net.ipv4.tcp_fin_timeout = 10" >> /etc/sysctl.conf
echo "net.ipv4.udp_rmem_min = 8192" >> /etc/sysctl.conf
echo "net.ipv4.udp_wmem_min = 8192" >> /etc/sysctl.conf
echo "net.ipv4.conf.all.send_redirects = 0" >> /etc/sysctl.conf
echo "net.ipv4.conf.all.accept_redirects = 0" >> /etc/sysctl.conf
echo "net.ipv4.conf.all.accept_source_route = 0" >> /etc/sysctl.conf
sysctl -p >> $logfile 2>&1
echo "* soft nofile 500000" >>/etc/security/limits.conf
echo "* hard nofile 500000" >>/etc/security/limits.conf
echo "session required pam_limits.so" >>/etc/pam.d/common-session
if [ -f /proc/user_beancounters ] || [ -d /proc/bc ] || [ -f /proc/vz/veinfo ] || [ -d /proc/vz/veinfo ]; then
echo -e "\033[0;32;148mLooks like this is a VPS. Moving on...\033[39m"
else
sed -i "s/defaults 1 1/defaults,noatime 0 0/" /etc/fstab
fi
# Installing Filemanager and MediaStream
rm -f -R /var/www/rutorrent/plugins/filemanager >> $logfile 2>&1
rm -f -R /var/www/rutorrent/plugins/fileupload >> $logfile 2>&1
rm -f -R /var/www/rutorrent/plugins/mediastream >> $logfile 2>&1
rm -f -R /var/www/stream >> $logfile 2>&1
#############################rutorrent.org svn went down :(
rm -r /var/www/rutorrent/plugins/fileshare >> $logfile 2>&1
cd
git clone https://github.com/nelu/rutorrent-thirdparty-plugins.git stable >> $logfile 2>&1
cd stable
cp -R filemanager fileshare fileupload mediastream /var/www/rutorrent/plugins/
#cd /var/www/rutorrent/plugins/
#svn co http://svn.rutorrent.org/svn/filemanager/trunk/mediastream >> $logfile 2>&1
#cd /var/www/rutorrent/plugins/
#svn co http://svn.rutorrent.org/svn/filemanager/trunk/filemanager >> $logfile 2>&1
cp /etc/seedbox-from-scratch/rutorrent.plugins.filemanager.conf.php.template /var/www/rutorrent/plugins/filemanager/conf.php
mkdir -p /var/www/stream/
ln -s /var/www/rutorrent/plugins/mediastream/view.php /var/www/stream/view.php
chown www-data: /var/www/stream
chown www-data: /var/www/stream/view.php
echo "<?php \$streampath = 'http://$IPADDRESS1/stream/view.php'; ?>" | tee /var/www/rutorrent/plugins/mediastream/conf.php > /dev/null
# 32.2 # FILEUPLOAD
#cd /var/www/rutorrent/plugins/
#svn co http://svn.rutorrent.org/svn/filemanager/trunk/fileupload >> $logfile 2>&1
chmod 775 /var/www/rutorrent/plugins/fileupload/scripts/upload
apt-get --yes -f install >> $logfile 2>&1
rm /var/www/rutorrent/plugins/unpack/conf.php
# 32.2
chown -R www-data:www-data /var/www/rutorrent
chmod -R 755 /var/www/rutorrent
apt-get --yes install gdebi >> $logfile 2>&1
#32.3
perl -pi -e "s/\\\$topDirectory\, \\\$fm/\\\$homeDirectory\, \\\$topDirectory\, \\\$fm/g" /var/www/rutorrent/plugins/filemanager/flm.class.php
perl -pi -e "s/\\\$this\-\>userdir \= addslash\(\\\$topDirectory\)\;/\\\$this\-\>userdir \= \\\$homeDirectory \? addslash\(\\\$homeDirectory\) \: addslash\(\\\$topDirectory\)\;/g" /var/www/rutorrent/plugins/filemanager/flm.class.php
perl -pi -e "s/\\\$topDirectory/\\\$homeDirectory/g" /var/www/rutorrent/plugins/filemanager/settings.js.php
#32.4
#unzip /etc/seedbox-from-scratch/rutorrent-oblivion.zip -d /var/www/rutorrent/plugins/
#echo "" | tee -a /var/www/rutorrent/css/style.css > /dev/null
#echo "/* for Oblivion */" | tee -a /var/www/rutorrent/css/style.css > /dev/null
#echo ".meter-value-start-color { background-color: #E05400 }" | tee -a /var/www/rutorrent/css/style.css > /dev/null
#echo ".meter-value-end-color { background-color: #8FBC00 }" | tee -a /var/www/rutorrent/css/style.css > /dev/null
#echo "::-webkit-scrollbar {width:12px;height:12px;padding:0px;margin:0px;}" | tee -a /var/www/rutorrent/css/style.css > /dev/null
perl -pi -e "s/\$defaultTheme \= \"\"\;/\$defaultTheme \= \"Oblivion\"\;/g" /var/www/rutorrent/plugins/theme/conf.php
git clone https://github.com/InAnimaTe/rutorrent-themes.git /var/www/rutorrent/plugins/theme/themes/Extra >> $logfile 2>&1
cp -r /var/www/rutorrent/plugins/theme/themes/Extra/OblivionBlue /var/www/rutorrent/plugins/theme/themes/
cp -r /var/www/rutorrent/plugins/theme/themes/Extra/Agent46 /var/www/rutorrent/plugins/theme/themes/
rm -r /var/www/rutorrent/plugins/theme/themes/Extra
#ln -s /etc/seedbox-from-scratch/seedboxInfo.php.template /var/www/seedboxInfo.php
# 32.5
#cd /var/www/rutorrent/plugins/
#rm -r /var/www/rutorrent/plugins/fileshare >> $logfile 2>&1
rm -r /var/www/share >> $logfile 2>&1
#svn co http://svn.rutorrent.org/svn/filemanager/trunk/fileshare >> $logfile 2>&1
mkdir /var/www/share
ln -s /var/www/rutorrent/plugins/fileshare/share.php /var/www/share/share.php
ln -s /var/www/rutorrent/plugins/fileshare/share.php /var/www/share/index.php
chown -R www-data:www-data /var/www/share
cp /etc/seedbox-from-scratch/rutorrent.plugins.fileshare.conf.php.template /var/www/rutorrent/plugins/fileshare/conf.php
perl -pi -e "s/<servername>/$IPADDRESS1/g" /var/www/rutorrent/plugins/fileshare/conf.php
###############################
mv /etc/seedbox-from-scratch/unpack.conf.php /var/www/rutorrent/plugins/unpack/conf.php
# 33.
echo -e "\033[0;32;148m.................\033[39m"
bash /etc/seedbox-from-scratch/updateExecutables >> $logfile 2>&1
#34.
echo $SBFSCURRENTVERSION1 > /etc/seedbox-from-scratch/version.info
echo $NEWFTPPORT1 > /etc/seedbox-from-scratch/ftp.info
echo $NEWSSHPORT1 > /etc/seedbox-from-scratch/ssh.info
echo $OPENVPNPORT1 > /etc/seedbox-from-scratch/openvpn.info
# 36.
wget -P /usr/share/ca-certificates/ --no-check-certificate https://certs.godaddy.com/repository/gd_intermediate.crt https://certs.godaddy.com/repository/gd_cross_intermediate.crt >> $logfile 2>&1
update-ca-certificates >> $logfile 2>&1
c_rehash >> $logfile 2>&1
sleep 2
# 96.
if [ "$INSTALLOPENVPN1" = "YES" ]; then
bash /etc/seedbox-from-scratch/installOpenVPN
fi
if [ "$INSTALLSABNZBD1" = "YES" ]; then
bash /etc/seedbox-from-scratch/installSABnzbd
fi
if [ "$INSTALLRAPIDLEECH1" = "YES" ]; then
bash /etc/seedbox-from-scratch/installRapidleech
fi
if [ "$INSTALLDELUGE1" = "YES" ]; then
bash /etc/seedbox-from-scratch/installDeluge
fi
sleep 1
#Installing Movie Thumbnailer
cd
wget http://sourceforge.net/projects/moviethumbnail/files/movie%20thumbnailer%20linux%20binary/mtn-200808a-linux/mtn-200808a-linux.tgz/download -O mtn.tar.gz >> $logfile 2>&1
tar xfvz mtn.tar.gz >> $logfile 2>&1
cp mtn-200808a-linux/mtn /usr/local/bin/
rm -r mtn-200808a-linux/
# 97. First user will not be jailed
echo -e "\033[0;32;148mLeave it now, About to Finish........\033[39m"
# createSeedboxUser <username> <password> <user jailed?> <ssh access?> <Chroot User>
bash /etc/seedbox-from-scratch/createSeedboxUser $NEWUSER1 $PASSWORD1 YES YES YES NO >> $logfile 2>&1
#Loadavg
cd ~
git clone https://github.com/loadavg/loadavg.git >> $logfile 2>&1
cd loadavg
cd ~
mv loadavg /var/www/
cd /var/www/loadavg
chmod 777 configure
./configure >> $logfile 2>&1
cd /tmp
wget https://rutorrent-tadd-labels.googlecode.com/files/lbll-suite_0.8.1.tar.gz >> $logfile 2>&1
tar zxvf lbll-suite_0.8.1.tar.gz >> $logfile 2>&1
sudo mv lbll-suite /var/www/rutorrent/plugins >> $logfile 2>&1
cd ~
wget http://www.rarlab.com/rar/unrarsrc-5.3.8.tar.gz >> $logfile 2>&1
tar -xvf unrarsrc-5.3.8.tar.gz >> $logfile 2>&1
cd unrar
sudo make -f makefile >> $logfile 2>&1
sudo install -v -m755 unrar /usr/bin >> $logfile 2>&1
cd ..
rm -R unrar >> $logfile 2>&1
rm unrarsrc-5.3.8.tar.gz
sed -i 's/width: 380px; height: 290px/width: 380px; height: 330px/' /var/www/rutorrent/css/style.css
cd ~
wget --no-check-certificate https://bintray.com/artifact/download/hectortheone/base/pool/m/m/magic/magic.zip >> $logfile 2>&1
unzip magic.zip >> $logfile 2>&1
mv default.sfx rarreg.key /usr/local/lib/
rm magic.zip
#Font Installation for mtn
wget http://ftp.us.debian.org/debian/pool/main/f/fonts-liberation/fonts-liberation_1.07.4-1_all.deb >> $logfile 2>&1
gdebi -n fonts-liberation_1.07.4-1_all.deb >> $logfile 2>&1
cd /var/www
chown -R www-data:www-data /var/www/rutorrent
chown -R www-data:www-data /var/www/loadavg
chmod -R 755 /var/www/rutorrent
cd
git clone https://github.com/mcrapet/plowshare.git plowshare >> $logfile 2>&1
cd ~/plowshare
make install >> $logfile 2>&1
cd
rm -r plowshare >> $logfile 2>&1
cp /etc/seedbox-from-scratch/nano/ini.nanorc /usr/share/nano/ini.nanorc
cp /etc/seedbox-from-scratch/nano/conf.nanorc /usr/share/nano/conf.nanorc
cp /etc/seedbox-from-scratch/nano/xorg.nanorc /usr/share/nano/xorg.nanorc
# édition conf nano
echo "
## Config Files (.ini)
include \"/usr/share/nano/ini.nanorc\"
## Config Files (.conf)
include \"/usr/share/nano/conf.nanorc\"
## Xorg.conf
include \"/usr/share/nano/xorg.nanorc\"">> /etc/nanorc
# Additional Plugins
cp -R /etc/seedbox-from-scratch/plugins/nfo /var/www/rutorrent/plugins/nfo
export EDITOR=nano
# 100
cd /var/www/rutorrent/plugins
sleep 1
rm -frv diskspace >> $logfile 2>&1
wget --no-check-certificate https://bintray.com/artifact/download/hectortheone/base/pool/main/b/base/hectortheone.rar >> $logfile 2>&1
#wget http://dl.bintray.com/novik65/generi...ace-3.6.tar.gz
#tar -xf diskspace-3.6.tar.gz
unrar x hectortheone.rar >> $logfile 2>&1
#rm diskspace-3.6.tar.gz
rm hectortheone.rar
cd quotaspace
chmod 755 run.sh
cd ..
perl -pi -e "s/100/1024/g" /var/www/rutorrent/plugins/throttle/throttle.php
#wget --no-check-certificate http://cheapseedboxes.com/trafic_check.rar >> $logfile 2>&1
#unrar x trafic_check.rar >> $logfile 2>&1
#rm trafic_check.rar
#wget --no-check-certificate http://cheapseedboxes.com/plimits.rar >> $logfile 2>&1
#unrar x plimits.rar >> $logfile 2>&1
#rm plimits.rar
#cd ..
chown -R www-data:www-data /var/www/rutorrent
cd
wget http://p.outlyer.net/vcs/files/vcs_1.13.2-pon.1_all.deb >> $logfile 2>&1
gdebi -n vcs_1.13.2-pon.1_all.deb >> $logfile 2>&1
sleep 1
rm -f *.deb
#rm -rf cd usr
echo -e "\033[0;32;148mFinishing Now .... .... .... ....\033[39m"
if [ "$OSV11" = "8" ]; then
systemctl enable apache2 >> $logfile 2>&1
service apache2 start >> $logfile 2>&1
fi
#set +x verbose
clear
echo ""
echo -e "\033[0;32;148m<<< The Seedbox From Scratch Script >>>\033[39m"
echo -e "\033[0;32;148mScript Modified by dannyti ---> https://github.com/dannyti/\033[39m"
echo ""
echo "Looks like everything is set."
echo ""
echo "Remember that your SSH port is now ======> $NEWSSHPORT1 "
echo ""
echo "Your Login info can also be found at https://$IPADDRESS1/private/SBinfo.txt"
echo "Download Data Directory is located at https://$IPADDRESS1/private "
echo "To install ZNC, run installZNC from ssh as main user"
echo ""
echo "IMPORTANT NOTE: Refresh rutorrent for Throttle plugin to load properly"
echo ""
echo "System will reboot now, but don't close this window until you take note of the port number: $NEWSSHPORT1"
echo ""
echo -e "\033[0;32;148mPlease login as main user and only then close this Window\033[39m"
reboot