postrm is in munin 2.0.19-3.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | #! /bin/sh
set -e
# workaround for bug #198522
delete_dir_if_empty() {
if [ ! -d "$1" ]; then
return 0;
fi
rmdir --ignore-fail-on-non-empty $1;
}
if [ "$1" = "purge" ]; then
echo "The generated web site or accumulated data won't be removed."
rm -f /var/lib/munin/datafile
rm -f /var/lib/munin/limits
rm -f /var/lib/munin/*.stats
rm -f /var/lib/munin/*/*.ok
rm -f /var/log/munin/munin-update.log*
rm -f /var/log/munin/munin-graph.log*
rm -f /var/log/munin/munin-html.log*
rm -f /var/log/munin/munin-limits.log*
rm -f /var/log/munin/munin-cgi-graph.log*
rm -f /var/log/munin/munin-cgi-html.log*
delete_dir_if_empty /var/cache/munin/www
delete_dir_if_empty /var/lib/munin/cgi-tmp
delete_dir_if_empty /var/lib/munin
delete_dir_if_empty /var/log/munin
delete_dir_if_empty /etc/munin/templates
delete_dir_if_empty /etc/munin
webserver=apache2
if [ -L /etc/$webserver/conf.d/munin ]; then
# delete the link
rm -f /etc/$webserver/conf.d/munin
# apache2-maintscript-helper will restart apache anyway
if [ ! -e /usr/share/apache2/apache2-maintscript-helper ] ; then
invoke-rc.d $webserver reload 3>/dev/null || true
fi
fi
# Disable configuration with Apache 2.4
if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then
. /usr/share/apache2/apache2-maintscript-helper
apache2_invoke disconf munin.conf
fi
# Remove configuration from Apache 2.4 conf dir
if [ -L /etc/$webserver/conf-available/munin.conf ]; then
# delete the link
rm -f /etc/$webserver/conf-available/munin.conf
fi
fi
|