Arthur de Jong

Open Source / Free Software developer

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

action=$1

# remove our configuration file (not a conffile) on purge manually
if [ "$action" = "purge" ]
then
  rm -f /etc/libnss-ldapd.conf
fi

#DEBHELPER#