summaryrefslogtreecommitdiff
path: root/storage/mroonga/vendor/groonga/packages/debian/groonga-httpd.postrm
blob: 816a1e6f7da680de3e9719a6af5c6de001d50743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/sh

set -e

if [ "$1" = "purge" ]; then
    for target in /var/log/groonga/httpd /etc/groonga/httpd/logs /etc/groonga/httpd
    do
	dpkg-statoverride --remove $target; rm -rf $target
    done
fi

#DEBHELPER#