32 lines
833 B
Plaintext
Executable File
32 lines
833 B
Plaintext
Executable File
# !/bin/bash
|
|
|
|
X86Lib64Dir=/lib/x86_64-linux-gnu
|
|
rm -rf ${X86Lib64Dir}/libwireshark.so.15
|
|
rm -rf ${X86Lib64Dir}/libwireshark.so
|
|
rm -rf ${X86Lib64Dir}/libwiretap.so.12
|
|
rm -rf ${X86Lib64Dir}/libwiretap.so
|
|
rm -rf ${X86Lib64Dir}/libwsutil.so.13
|
|
rm -rf ${X86Lib64Dir}/libwsutil.so
|
|
|
|
#rm -rf /usr/local/omc
|
|
rm -rf /etc/nginx/conf.d/omc.conf
|
|
rm -f /usr/local/bin/omcd
|
|
|
|
systemctl daemon-reload
|
|
|
|
if systemctl list-units --type=service --all | grep -q 'restagent.service'; then
|
|
echo -n "Stopping OMC service ... "
|
|
systemctl stop restagent.service
|
|
systemctl stop crontask.service
|
|
systemctl stop sshsvc.service
|
|
systemctl stop captrace.service
|
|
echo "done"
|
|
fi
|
|
|
|
systemctl disable restagent.service
|
|
systemctl disable crontask.service
|
|
systemctl disable sshsvc.service
|
|
systemctl disable captrace.service
|
|
|
|
systemctl daemon-reload
|