Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/debian/nslcd.postrm
blob: 66fe1bbf53024b25dfab2e5bcbb121bd069878e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e

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

# remove /var/run/nslcd directory
rm -rf /var/run/nslcd

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

#DEBHELPER#