You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mosquitto/debian/mosquitto.prerm

27 lines
281 B
Bash

#!/bin/sh
# prerm script for mosquitto
#
# see: dh_installdeb(1)
set -e
case "$1" in
remove|purge|deconfigure)
invoke-rc.d mosquitto stop
;;
upgrade)
;;
failed-upgrade)
;;
*)
echo "prerm called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0