This repository has been archived by the owner on Feb 26, 2018. It is now read-only.
forked from zypr/perfectrootserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
129 lines (106 loc) · 2.78 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
#!/bin/bash
# The perfect rootserver - Your Webserverinstallation Script!
# by shoujii | BoBBer446 > 2017
#####
# https://github.com/shoujii/perfectrootserver
# Compatible with Debian 8.x (jessie)
# Special thanks to Zypr!
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#-------------------------------------------------------------------------------------------------------------
#################################
## DO NOT MODIFY, JUST DON'T! ##
#################################
#Enable debug:
set -x
source script/security.sh
source script/functions.sh
source script/checksystem.sh
source script/checkconfig.sh
source script/addoncheckconfig.sh
source script/logininformation.sh
source script/instructions.sh
source script/bash.sh
source script/system.sh
source script/mariadb.sh
if [ ${USE_PHP7} == '1' ] && [ ${USE_PHP5} == '0' ]; then
source script/php7.sh
fi
if [ ${USE_PHP7} == '0' ] && [ ${USE_PHP5} == '1' ]; then
source script/php5.sh
fi
source script/ssl.sh
source script/ssh.sh
source script/publickey.sh
source script/nginx.sh
source script/fail2ban.sh
source script/phpmyadmin.sh
source script/dovecot.sh
source script/postfix.sh
if [ ${USE_WEBMAIL} == '1' ]; then
source script/roundcube.sh
fi
source script/vimbadmin.sh
source script/mailfilter.sh
#source script/policydweight.sh
source script/firewall.sh
#source script/finischer.sh
source addons/ajenti.sh
source addons/teamspeak3.sh
source addons/minecraft.sh
source addons/vsftpdinstall.sh
#source addons/openvpn.sh
#source addons/disablelogin.sh
#source addons/addnewsite.sh
#source addons/addnewmysqluser.sh
createpw
checksystem
checkconfig
addoncheckconfig
system
mariadb
bashinstall
ssl
ssh
nginx
if [ ${USE_PHP7} == '1' ] && [ ${USE_PHP5} == '0' ]; then
php7
fi
if [ ${USE_PHP7} == '0' ] && [ ${USE_PHP5} == '1' ]; then
php5
fi
dovecot
postfix
mailfilter
if [ ${USE_WEBMAIL} == '1' ]; then
roundcube
fi
vimbadmin
# Special harding
#policydweight
firewall
fail2ban
if [ ${USE_PMA} == '1' ]; then
phpmyadmin
fi
publickey
logininformation
ajenti
teamspeak3
minecraft
vsftpd
#openvpn
#disablelogin
#addnewsite
#finischer
instructions