Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/debian/libnss-ldapd.postrm
blob: 33bab8479647ff0fa8e6ac6aec96fcfc10a37186 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

CONFFILE="/etc/nss-ldapd.conf"

# remove our configuration file (not a conffile) on purge manually
if [ "$1" = "purge" ]
then
  rm -f "$CONFFILE"
fi

#DEBHELPER#