freenetis-qos-github/deb/prerm @ 5af3ffcf
5af3ffcf | Ondřej Fibich | #!/bin/sh
|
|
# FreenetIS-qos DEB: actions before uninstalling of package
|
|||
set -e
|
|||
NAME=freenetis-qos
|
|||
# stop daemon
|
|||
if [ -x /usr/sbin/invoke-rc.d ]; then
|
|||
invoke-rc.d $NAME stop 3>/dev/null || true
|
|||
else
|
|||
/etc/init.d/$NAME stop 3>/dev/null || true
|
|||
fi
|
|||
exit 0
|