tags 639529 + patch
thanks
Hi,
find attached simple patches for autofs5-ldap.postinst and
autofs5-ldap.postrm that add respectively remove the line "automount:
files ldap" from /etc/nsswitch.conf.
Best regards,
Andi
#!/bin/sh
set -e
NSSWITCH="/etc/nsswitch.conf"
if [ -w $NSSWITCH ] && ! grep -q "automount:" $NSSWITCH ; then
echo "automount: files ldap" >> $NSSWITCH
fi
#DEBHELPER#
#!/bin/sh
set -e
NSSWITCH="/etc/nsswitch.conf"
if [ -w $NSSWITCH ] ; then
sed -i /^automount:/d $NSSWITCH
fi
#DEBHELPER#