#!/bin/sh set -e # find the names of services that are configured to use LDAP # Note: this function is in libnss-ldapd.config and libnss-ldapd.postrm nss_list_configured() { sed -n \ 's/^[[:space:]]*\([a-z]*\)[[:space:]]*:.*[[:space:]]ldap\([[:space:]].*\)\?/\1/p' \ /etc/nsswitch.conf \ | xargs } # check whether the name is configure to do lookups through # LDAP # Note: this function is in libnss-ldapd.postinst and libnss-ldapd.postrm nss_is_enabled() { name="$1" grep -q '^[[:space:]]*'$name'[[:space:]]*:.*ldap.*' /etc/nsswitch.conf } # remove NSS lookups though LDAP for the specified service # Note: this function is in libnss-ldapd.postinst and libnss-ldapd.postrm nss_disable() { name="$1" # these functions also remove the lookup result handling part # of the ldap entry (see nsswitch.conf(5)) if nss_is_enabled "$name" then echo "/etc/nsswitch.conf: disable LDAP lookups for $name" >&2 if [ -n "`sed -n '/^[[:space:]]*'$name'[[:space:]]*:[[:space:]]*ldap[[:space:]]*\(\[[^]]*\]\)*[[:space:]]*$/p' /etc/nsswitch.conf`" ] then # the name service only maps to ldap, remove the whole line sed -i '/^[[:space:]]*'$name'[[:space:]]*:[[:space:]]*ldap[[:space:]]*\(\[[^]]*\]\)*[[:space:]]*$/d' /etc/nsswitch.conf else # remove ldap part from existing line, keeping other methods intact # TODO: remove trailing space sed -i 's/^\([[:space:]]*'$name'[[:space:]]*:.*\)ldap[[:space:]]*\(\[[^]]*\]\)*[[:space:]]*\(.*\)$/\1\3/' /etc/nsswitch.conf fi # invalidate nscd cache nscd -i "$name" > /dev/null 2>&1 || true fi # we're done return 0 } # offer to remove ldap from nsswitch.conf if ( [ "$1" = "remove" ] || [ "$1" = "purge" ] ) then # check which naming services are configured configured=`nss_list_configured` if [ -n "$configured" ] then # if we have debconf, use debconf to ask, otherwise just shout if [ -e /usr/share/debconf/confmodule ] then # ask with debconf . /usr/share/debconf/confmodule db_title "Removing libnss-ldapd" db_subst libnss-ldapd/clean_nsswitch services "`echo $configured | sed 's/[[:space:]][[:space:]]*/, /g'`" db_fset libnss-ldapd/clean_nsswitch seen false if db_input high libnss-ldapd/clean_nsswitch then db_go db_get libnss-ldapd/clean_nsswitch if [ "$RET" = "true" ] then for n in $configured do nss_disable $n done fi fi # re-check which services are left enabled configured=`nss_list_configured` fi # check if ldap is still configured if [ -n "$configured" ] then echo "WARNING: LDAP is still configured in /etc/nsswitch.conf" >&2 fi fi fi # call ldconfig to signal the removal of our NSS library if [ "$1" = "remove" ] then ldconfig fi #DEBHELPER#