#!/bin/sh set -e # summary of how this script can be called: # * `remove' # * `purge' # * `upgrade' # * `failed-upgrade' # * `abort-install' # * `abort-install' # * `abort-upgrade' # * `disappear' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package if [ -f /usr/share/debconf/confmodule ]; then . /usr/share/debconf/confmodule fi if [ -f /usr/share/dbconfig-common/dpkg/postrm.mysql ]; then . /usr/share/dbconfig-common/dpkg/postrm.mysql dbc_go rsyslog-mysql $@ fi case "$1" in remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; purge) CONFIGFILE=/etc/rsyslog.d/mysql.conf for ext in '~' '%' .bak .ucf-new .ucf-old .ucf-dist; do rm -f $CONFIGFILE$ext done rm -f $CONFIGFILE if which ucf >/dev/null; then ucf --purge $CONFIGFILE fi if which ucfr >/dev/null; then ucfr --purge rsyslog-mysql $CONFIGFILE fi ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER#