mirror of
https://github.com/waytotheweb/scripts.git
synced 2026-03-29 21:57:07 +00:00
58 lines
1.8 KiB
Bash
58 lines
1.8 KiB
Bash
|
|
#!/bin/sh
|
||
|
|
echo "Uninstalling cxs..."
|
||
|
|
echo
|
||
|
|
|
||
|
|
if test `cat /proc/1/comm` = "systemd"
|
||
|
|
then
|
||
|
|
systemctl disable cxswatch.service
|
||
|
|
systemctl disable pure-uploadscript.service
|
||
|
|
systemctl stop cxswatch.service
|
||
|
|
systemctl stop pure-uploadscript.service
|
||
|
|
rm -fv /usr/lib/systemd/system/cxswatch.service
|
||
|
|
rm -fv /usr/lib/systemd/system/pure-uploadscript.service
|
||
|
|
systemctl daemon-reload
|
||
|
|
else
|
||
|
|
if [ -f /etc/redhat-release ]; then
|
||
|
|
/etc/init.d/pure-uploadscript stop
|
||
|
|
chkconfig pure-uploadscript off
|
||
|
|
chkconfig pure-uploadscript --del
|
||
|
|
rm -fv /etc/init.d/pure-uploadscript
|
||
|
|
|
||
|
|
/etc/init.d/cxswatch stop
|
||
|
|
/sbin/chkconfig cxswatch off
|
||
|
|
/sbin/chkconfig cxswatch --del
|
||
|
|
rm -fv /etc/init.d/cxswatch
|
||
|
|
elif [ -f /etc/debian_version ] || [ -f /etc/lsb-release ]; then
|
||
|
|
/etc/init.d/pure-uploadscript stop
|
||
|
|
update-rc.d -f pure-uploadscript remove
|
||
|
|
rm -fv /etc/init.d/pure-uploadscript
|
||
|
|
elif [ -f /etc/gentoo-release ]; then
|
||
|
|
/etc/init.d/pure-uploadscript stop
|
||
|
|
rc-update del pure-uploadscript default
|
||
|
|
rm -fv /etc/init.d/pure-uploadscript
|
||
|
|
else
|
||
|
|
/etc/init.d/pure-uploadscript stop
|
||
|
|
chkconfig pure-uploadscript off
|
||
|
|
chkconfig pure-uploadscript --del
|
||
|
|
rm -fv /etc/init.d/pure-uploadscript
|
||
|
|
|
||
|
|
/etc/init.d/cxswatch stop
|
||
|
|
/sbin/chkconfig cxswatch off
|
||
|
|
/sbin/chkconfig cxswatch --del
|
||
|
|
rm -fv /etc/init.d/cxswatch
|
||
|
|
fi
|
||
|
|
fi
|
||
|
|
|
||
|
|
/usr/local/interworx/bin/nodeworx.pex -u --controller Plugins --action edit --plugin_name configservercxs --status 0 -n
|
||
|
|
rm -fv /usr/sbin/cxs
|
||
|
|
rm -fv /etc/cron.d/cxs-cron
|
||
|
|
rm -fv /etc/cron.d/cxsdb-cron
|
||
|
|
rm -Rfv /etc/cxs
|
||
|
|
rm -fv /usr/local/csf/lib/ConfigServer/cxs.pm
|
||
|
|
rm -Rfv /usr/local/interworx/plugins/configservercxs /usr/local/interworx/html/configserver/cxs
|
||
|
|
|
||
|
|
cd
|
||
|
|
|
||
|
|
echo
|
||
|
|
echo "...Done"
|