slackbuilds_ponce/system/nss-pam-ldapd/doinst.sh
Christopher Walker 840861ce88 system/nss-pam-ldapd: Added (LDAP NSS/PAM module)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
2012-02-20 12:20:47 -06:00

14 lines
410 B
Bash

config() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
# toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
}
config etc/nslcd.conf.new
config etc/rc.d/rc.nss-pam-ldapd.new