1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-05 06:51:53 +00:00
Sonarr/distribution/debian/prerm

7 lines
176 B
Text
Raw Normal View History

2018-01-26 19:30:13 +00:00
#!/bin/sh
if [ -f /proc/1/comm ] && [ "`cat /proc/1/comm`" = "systemd" ]; then
rm -f /etc/init.d/sonarr
systemctl stop sonarr.service
systemctl disable sonarr.service
fi