-
Notifications
You must be signed in to change notification settings - Fork 1
/
install
43 lines (38 loc) · 872 Bytes
/
install
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
# Tool Name :- HamppServer
# Author :- Md Habibur Rahman
# Date :- 03 April 2021
if [ ! -d /usr/bin ];then
if [ ! -e /data/data/com.termux/files/usr/bin/python ];then
pkg update -y
pkg install python -y
fi
fi
if [ ! -d /usr/bin ];then
if [ -e /data/data/com.termux/files/usr/bin/apachectl ];then
pkg update -y
apt purge apache2 -y
fi
fi
if [ ! -d /usr/bin ];then
if [ ! -e /data/data/com.termux/files/usr/bin/mysql ];then
pkg update -y
pkg install mariadb -y
fi
fi
if [ ! -d /usr/bin ];then
if [ ! -e /data/data/com.termux/files/usr/bin/unzip ];then
pkg update -y
pkg install unzip -y
fi
fi
if [ ! -d /usr/wget ];then
if [ ! -e /data/data/com.termux/files/usr/bin/wget ];then
pkg update -y
pkg install wget -y
fi
fi
apt install php-apache -y
pip install requests
pip install colorama
python .setup.aex
exit