Arthur de Jong

Open Source / Free Software developer

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

set -e

# call ldconfig to signal the removal of our NSS library
if [ "$1" = "remove" ]
then
  ldconfig
fi

#DEBHELPER#