#!/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#