1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-13 20:01:56 +00:00
srs/trunk/scripts/unstall.sh

16 lines
322 B
Bash
Raw Normal View History

2019-10-05 12:40:45 +00:00
#!/bin/bash
2019-10-05 12:43:04 +00:00
if [[ -d /usr/lib/systemd/system ]]; then
systemctl disable srs
systemctl stop srs
rm -f /usr/lib/systemd/system/srs.service
rm -f /etc/init.d/srs
else
/sbin/chkconfig srs off
/sbin/chkconfig --del srs
/etc/init.d/srs stop
rm -f /etc/init.d/srs
fi
2019-10-05 12:40:45 +00:00
rm -rf /usr/local/srs
echo "SRS uninstalled"