lemonldap-ng/debian/liblemonldap-ng-portal-perl.postrm

19 lines
213 B
Plaintext
Raw Normal View History

#!/bin/bash
set -e
. /usr/share/debconf/confmodule
if [ "$1" == "configure" ]
then
db_purge
fi
if [ "$1" == "purge" ]
then
rm -f /var/lib/lemonldap-ng/portal/portal.wsdl
fi
2012-12-02 10:17:30 +01:00
2012-12-14 13:54:06 +01:00
# Maintainer: #DEBHELPER#
2012-12-02 10:17:30 +01:00
exit 0