aboutsummaryrefslogtreecommitdiffstats
path: root/debian/sitesummary.postrm
blob: ec8b4911168b50c2ebcf2ec2057ae377250174f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

if [ "$1" = "purge" ] ; then
    cd /var/lib/sitesummary
    rm -rf entries tmpstorage www
    rm -f munin.conf munin.conf.pre munin.conf.post
    rm -f nagios-generated.cfg
fi

#DEBHELPER#