#!/bin/sh # postrm script for monit-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 CONF=/etc/php5/conf.d/apc.ini # remove us from inittab echo "CN: Removing APC tuneups" cp-update --comment ';' -r php-apc-cn "$CONF" # reload Apache if apache2ctl configtest 2>/dev/null; then echo "CN: Reloading Apache..." invoke-rc.d apache2 force-reload || true else echo "CN: Your Apache2 configuration is either broken or nonexistant" fi # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0