summaryrefslogtreecommitdiffstats
path: root/debian/icingaweb2-common.postrm
blob: b41342f47c65c50631c725ee8e072de5aca45fdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

# cleanup on purge
if [ "$1" = "purge" ]; then
    rm -rf /etc/icingaweb2
    rm -rf /var/lib/icingaweb2
    rm -rf /var/log/icingaweb2
fi

#DEBHELPER#