diff options
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 |
commit | 840861ce8814fd32ee5594f526d5dc8af177b668 (patch) | |
tree | 8fc5030de2d761a944b444fd8a0007ba7689532d /system/nss-pam-ldapd/doinst.sh | |
parent | fee47e9d5033c11d11bdb69eb71333890b1e955f (diff) |
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.sh | 14 |
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 000000000000..8dc76499867f --- /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 |