diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2006-12-19 12:53:05 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2006-12-19 12:53:05 +0100 |
commit | a03d9151a39c2875d761b5b0f89675150546925e (patch) | |
tree | c97cfc299100b6b16729dcf29bb854f75815a4a9 /debian/libnss-ldapd.postrm | |
parent | fde5e0ece1377fa1ed09fe4a601e4e18767174bd (diff) |
change default configuration file name to /etc/nss-ldapd.conf
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/libnss_ldapd@179 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'debian/libnss-ldapd.postrm')
-rw-r--r-- | debian/libnss-ldapd.postrm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/debian/libnss-ldapd.postrm b/debian/libnss-ldapd.postrm index 8a1da8f..33bab84 100644 --- a/debian/libnss-ldapd.postrm +++ b/debian/libnss-ldapd.postrm @@ -1,11 +1,11 @@ #!/bin/sh -action=$1 +CONFFILE="/etc/nss-ldapd.conf" # remove our configuration file (not a conffile) on purge manually -if [ "$action" = "purge" ] +if [ "$1" = "purge" ] then - rm -f /etc/libnss-ldapd.conf + rm -f "$CONFFILE" fi #DEBHELPER# |