-
Notifications
You must be signed in to change notification settings - Fork 0
/
Setup_Services.sh
59 lines (48 loc) · 1.83 KB
/
Setup_Services.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
#!/bin/sh
pkg_add -u
echo ""
echo "################################################################"
echo "## ##"
echo "## Setting up Services... ##"
echo "## ##"
echo "################################################################"
echo ""
echo ""
echo "################################################################"
echo "## ##"
echo "## Setting up phpMyAdmin... ##"
echo "## ##"
echo "################################################################"
echo ""
echo "Configure phpMyAdmin? (yes/empty)"
read _phpMyAdmin;
if [ "$_phpMyAdmin" != "" ]
then
pkg_add phpmyadmin
fi
echo ""
echo "################################################################"
echo "## ##"
echo "## Setting up NGINX... ##"
echo "## ##"
echo "################################################################"
echo ""
echo "Configure NGINX? (yes/empty)"
read _nginx;
if [ "$_nginx" != "" ]
then
pkg_add nginx
fi
echo ""
echo "################################################################"
echo "## ##"
echo "## Setting up Apache HTTP Server... ##"
echo "## ##"
echo "################################################################"
echo ""
echo "Configure Apache HTTP Server? (yes/empty)"
read _apacheHttp;
if [ "$_apacheHttp" != "" ]
then
pkg_add apache-httpd
fi