-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathosposremove.sh
More file actions
executable file
·52 lines (43 loc) · 1.48 KB
/
osposremove.sh
File metadata and controls
executable file
·52 lines (43 loc) · 1.48 KB
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
#!/bin/bash
# Determing if the user executing this script is the root user or not
# Display the UID
echo "Your UID is ${UID}."
# Bash has built in Variables, the above variable is one of them.
# Display if the user is root or not.
# Use the -eq if using numbers and = if using a string.
# Use double [[ ]] as this is the current preferred method, and the sigle brackets
# are obsolete
if [[ "${UID}" -eq 0 ]] # The spaces in the if statment are very important!
then
echo "Now removing Apache Server"
timeout 30 read -n 1 -s -r -p "Press any key to continue"
echo " "
sudo apt-get purge apache2 -y
echo "ServerName 192.168.1.160" >> /etc/apache2/apache2.conf
echo "Apache Server Removed!"
timeout 30 read -n 1 -s -r -p "Press any key to continue"
echo " "
echo "Now Removing Mysql Server!"
timeout 30 read -n 1 -s -r -p "Press any key to continue"
echo " "
sudo apt Purge mysql-server -y
echo "Mysql removal done!"
echo " "
timeout 30 read -n 1 -s -r -p "Press any key to continue"
echo " "
echo "Now removing PHP!"
timeout 30 read -n 1 -s -r -p "Press any key to continue"
echo " "
sudo apt-get purge php libapache2-mod-php php-mcrypt php-mysql php-intl php-gd php-bcmath php-common php-curl -y
echo "Done!"
timeout 30 read -n 1 -s -r -p "Press any key to continue"
echo " "
cd /opt/
sudo rm -rf opensourcepos
apt autoremove -y
rm -rf /var/www/
echo " OSPOS HAS NOW BEEN REMOVED FROM YOUR MACHINE!"
else
echo "You re not root and therefor may not install software. Please use root or sudo command."
fi
#