2017-01-20 16:43:02 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
####################################################################
|
|
|
|
# EOM Teleport Server Uninstall Script
|
|
|
|
####################################################################
|
|
|
|
|
|
|
|
if [ `id -u` -ne 0 ];then
|
|
|
|
echo ""
|
|
|
|
echo -e "\e[31mPlease run the uninstaller with ROOT.\033[0m"
|
|
|
|
echo ""
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
echo "Uninstalling EOM Teleport Server..."
|
|
|
|
|
|
|
|
if [ -f /etc/init.d/eom_ts ]; then
|
|
|
|
service eom_ts stop
|
|
|
|
rm -rf /etc/init.d/eom_ts
|
|
|
|
fi
|
2017-01-26 16:20:03 +00:00
|
|
|
rm -rf /etc/rc2.d/S50eom_ts
|
|
|
|
rm -rf /etc/rc3.d/S50eom_ts
|
|
|
|
rm -rf /etc/rc4.d/S50eom_ts
|
|
|
|
rm -rf /etc/rc5.d/S50eom_ts
|
|
|
|
|
2017-01-20 16:43:02 +00:00
|
|
|
|
|
|
|
if [ -f /etc/init.d/teleport ]; then
|
|
|
|
service teleport stop
|
|
|
|
rm -rf /etc/init.d/teleport
|
|
|
|
fi
|
2017-01-26 16:20:03 +00:00
|
|
|
rm -rf /etc/rc2.d/S50teleport
|
|
|
|
rm -rf /etc/rc3.d/S50teleport
|
|
|
|
rm -rf /etc/rc4.d/S50teleport
|
|
|
|
rm -rf /etc/rc5.d/S50teleport
|
2017-01-20 16:43:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
if [ -d /usr/local/eom/teleport ]; then
|
|
|
|
rm -rf /usr/local/eom/teleport
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
echo -e "\e[32mUninstallation done.\033[0m"
|
|
|
|
echo ""
|