58 lines
1.4 KiB
Bash
58 lines
1.4 KiB
Bash
#!/bin/sh
|
|
# postrm script for pnp4nagios-bin
|
|
#
|
|
# see: dh_installdeb(1)
|
|
|
|
set -e
|
|
|
|
# summary of how this script can be called:
|
|
# * <postrm> `remove'
|
|
# * <postrm> `purge'
|
|
# * <old-postrm> `upgrade' <new-version>
|
|
# * <new-postrm> `failed-upgrade' <old-version>
|
|
# * <new-postrm> `abort-install'
|
|
# * <new-postrm> `abort-install' <old-version>
|
|
# * <new-postrm> `abort-upgrade' <old-version>
|
|
# * <disappearer's-postrm> `disappear' <overwriter>
|
|
# <overwriter-version>
|
|
# for details, see http://www.debian.org/doc/debian-policy/ or
|
|
# the debian-policy package
|
|
|
|
|
|
case "$1" in
|
|
purge|remove)
|
|
if [ -d /etc/nagios3/conf.d/ ]; then
|
|
if [ -L /etc/nagios3/conf.d/pnp4nagios.cfg ]; then
|
|
ls -l /etc/nagios3/conf.d/pnp4nagios.cfg | grep -q /etc/pnp4nagios/nagios.cfg
|
|
if [ $? -eq 0 ]; then
|
|
rm -f /etc/nagios3/conf.d/pnp4nagios.cfg
|
|
fi
|
|
fi
|
|
fi
|
|
if [ -d /etc/icinga/objects/ ]; then
|
|
if [ -L /etc/icinga/objects/pnp4nagios.cfg ]; then
|
|
ls -l /etc/icinga/objects/pnp4nagios.cfg | grep -q /etc/pnp4nagios/nagios.cfg
|
|
if [ $? -eq 0 ]; then
|
|
rm -f /etc/icinga/objects/pnp4nagios.cfg
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
;;
|
|
upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
|
|
;;
|
|
|
|
*)
|
|
echo "postrm called with unknown argument \`$1'" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
# dh_installdeb will replace this with shell code automatically
|
|
# generated by other debhelper scripts.
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|
|
|