-
Notifications
You must be signed in to change notification settings - Fork 5
/
makefile.sh
213 lines (198 loc) · 6.6 KB
/
makefile.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
#!/bin/bash
echo "WELCOME !! THIS SCRIPT WILL LET YOU INSTALL THE FOLLOWING TOOLS:-
1)C_ICAP
2)CLAMAV
3)SQUID
4)NODEJS
5)MONGODB"
sleep 1
echo "################STARTING#############"
sleep 2
#:CLAMAV
wget http://www.clamav.net/downloads/production/clamav-0.99.3.tar.gz
tar -xvf clamav-0.99.3.tar.gz
rm clamav-0.99.3.tar.gz
cd clamav-0.99.3/
./configure --prefix=/usr/local/clamav --without-openssl && make && make install
#: ------testing-----
/usr/local/clamav/bin/clamscan ~ > info 2>/dev/null
if [[ -s info ]];
then
echo "#################################"
echo "#################################"
echo "#################################"
echo "CLAMAV SUCCESSFULLY INSTALLED ;) "
echo "#################################"
echo "#################################"
echo "#################################"
sleep 3
rm info
cd ../
else
echo "#################################"
echo "#################################"
echo "#################################"
echo " CLAMAV INSTALLATION FAILED ;/ "
echo "#################################"
echo "#################################"
echo "#################################"
read -p "Are you sure you want to continue? <y/N> " prompt
if [[ $prompt =~ [yY](es)* ]]
then
echo "Continuing installation of other tools"
cd ../
else
cd ../
exit 0
fi
fi
#:C-ICAP
wget https://sourceforge.net/projects/c-icap/files/c-icap/0.5.x/c_icap-0.5.2.tar.gz/download
tar -xvf download
cd c_icap-0.5.2/
./configure --prefix=/usr/local/c-icap && make && make install
/usr/local/c-icap/bin/c-icap
#: -----testing-----
if [[ -s /usr/local/c-icap/bin/c-icap-client ]];
then
echo "#################################"
echo "#################################"
echo "#################################"
echo "C_ICAP SUCCESSFULLY INSTALLED ;) "
echo "#################################"
echo "#################################"
echo "#################################"
sleep 3
cd ../
else
echo "#################################"
echo "#################################"
echo "#################################"
echo " C_ICAP INSTALLATION FAILED ;/ "
echo "#################################"
echo "#################################"
echo "#################################"
read -p "Are you sure you want to continue? <y/N> " prompt
if [[ $prompt =~ [yY](es)* ]]
then
echo "Continuing installation of other tools"
cd ../
else
cd ../
exit 0
fi
fi
#:SQUID
wget http://www.squid-cache.org/Versions/v3/3.5/squid-3.5.27.tar.gz
tar -xvf squid-3.5.27.tar.gz
cd squid-3.5.27/
./configure '--prefix=/usr/local/squid' '--with-logdir=/var/log/squid'
'--with-pidfile=/var/run/squid.pid' '--disable-dependency-tracking' '--enable-eui' '--enable-follow-x-forwarded-for' '--enable-auth' '--enable-auth-basic=DB,fake,getpwnam,LDAP,NCSA,NIS,PAM,POP3,RADIUS,SASL,SMB,SMB_LM' '--enable-auth-ntlm=SMB_LM,fake' '--enable-auth-digest=file,LDAP' '--enable-auth-negotiate=kerberos' '--enable-external-acl-helpers=LDAP_group,time_quota,session,unix_group,wbinfo_group' '--enable-storeid-rewrite-helpers=file' '--enable-cache-digests' '--enable-cachemgr-hostname=localhost' '--enable-delay-pools' '--enable-epoll' '--enable-icap-client' '--enable-ident-lookups' '--with-large-files' '--enable-linux-netfilter' '--enable-removal-policies=heap,lru' '--enable-snmp' '--enable-ssl' '--enable-ssl-crtd' '--enable-storeio=aufs,diskd,ufs,rock' '--enable-diskio' '--enable-wccpv2' '--enable-esi' '--enable-ecap' '--with-aio' '--with-default-user=squid' '--with-dl' '--with-openssl' '--with-pthreads' '--disable-arch-native' '--with-pic'
make && make install
#: ------testing-----
squid -v > info 2>/dev/null
if [[ -s info ]];
then
echo "#################################"
echo "#################################"
echo "#################################"
echo "SQUID SUCCESSFULLY INSTALLED ;) "
echo "#################################"
echo "#################################"
echo "#################################"
sleep 3
rm info
cd ../
else
echo "#################################"
echo "#################################"
echo "#################################"
echo " SQUID INSTALLATION FAILED ;/ "
echo "#################################"
echo "#################################"
echo "#################################"
read -p "Are you sure you want to continue? <y/N> " prompt
if [[ $prompt =~ [yY](es)* ]]
then
echo "Continuing installation of other tools"
cd ../
else
cd ../
exit 0
fi
fi
#:SQUID-CLAMAV
wget https://sourceforge.net/projects/squidclamav/files/latest/download
tar -xvf download
cd squidclamav-6.16/
./configure --with-c-icap=/usr/local/c-icap/
make && make install
#:NODEJS
wget https://nodejs.org/dist/v6.11.2/node-v6.11.2.tar.gz
tar -xvf node-v6.11.2.tar.gz
cd node-v6.11.2/
./configure --prefix=~/.local && make && make install
ln -s ~/.local/lib/node_modules ~/.node_modules
#: -------testing-------
node -v > info 2>/dev/null
if [[ -s info ]];
then
echo "#################################"
echo "#################################"
echo "#################################"
echo "SUCCESSFULLY INSTALLED ;) "
echo "#################################"
echo "#################################"
echo "#################################"
rm info
cd ../
else
echo "#################################"
echo "#################################"
echo "#################################"
echo " NODEJS INSTALLATION FAILED ;/ "
echo "#################################"
echo "#################################"
echo "#################################"
read -p "Are you sure you want to continue? <y/N> " prompt
if [[ $prompt =~ [yY](es)* ]]
then
echo "Continuing installation of other tools"
cd ../
else
cd ../
exit 0
fi
fi
#:MONGODB
wget https://www.mongodb.com/dr/fastdl.mongodb.org/linux/mongodb-linux-x86_64-amazon-3.4.7.tgz/download
tar -xvf download
cd mongodb-linux-x86_64-amazon-3.4.7/bin
mkdir -p /data/db
touch test
nohup ./mongod < test > /dev/null
retval=$?
if [ ! retval -eq 0 ]; then
echo "#################################"
echo "#################################"
echo "#################################"
echo " MONGODB INSTALLATION FAILED ;/ "
echo "#################################"
echo "#################################"
echo "#################################"
sleep 3
echo "EXCEPT MONGODB EVERYTHING INSTALLED SUCCESFULLY XD....EXITING !"
cd ../../
exit 0
else
echo "#################################"
echo "#################################"
echo "#################################"
echo "MONGODB SUCCESSFULLY INSTALLED ;)"
echo "#################################"
echo "#################################"
echo "#################################"
rm test
cd ../../
echo "ALL THE TOOLS ARE INSTALLED SUCCESSFULLY ...ENJOY !!"
fi