#!/bin/sh # postrm script for bind9-cn # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `remove' # * `purge' # * `upgrade' # * `failed-upgrade' # * `abort-install' # * `abort-install' # * `abort-upgrade' # * `disappear' overwrit>r> # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in purge) # continue below ;; *) exit 0 ;; esac # import CN-functions . /usr/share/carnet-tools/functions.sh # remove us from inittab echo "CN: Removing monit service from /etc/inittab" cp-update -r monit-cn /etc/inittab # kill monit echo "CN: Stopping monit service" pkill -9 -f /usr/sbin/monit || true # reload init kill -HUP 1 # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0