summaryrefslogtreecommitdiffstats
path: root/system/nss-pam-ldapd/doinst.sh
diff options
context:
space:
mode:
author Christopher Walker <kris240376@gmail.com>2012-02-19 18:02:16 -0600
committer Robby Workman <rworkman@slackbuilds.org>2012-02-20 12:20:47 -0600
commit840861ce8814fd32ee5594f526d5dc8af177b668 (patch)
tree8fc5030de2d761a944b444fd8a0007ba7689532d /system/nss-pam-ldapd/doinst.sh
parentfee47e9d5033c11d11bdb69eb71333890b1e955f (diff)
downloadslackbuilds-840861ce8814fd32ee5594f526d5dc8af177b668.tar.gz
slackbuilds-840861ce8814fd32ee5594f526d5dc8af177b668.tar.xz
system/nss-pam-ldapd: Added (LDAP NSS/PAM module)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/nss-pam-ldapd/doinst.sh')
-rw-r--r--system/nss-pam-ldapd/doinst.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/system/nss-pam-ldapd/doinst.sh b/system/nss-pam-ldapd/doinst.sh
new file mode 100644
index 0000000000..8dc7649986
--- /dev/null
+++ b/system/nss-pam-ldapd/doinst.sh
@@ -0,0 +1,14 @@
+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