summaryrefslogtreecommitdiffstats
path: root/system/nss_ldap/doinst.sh
diff options
context:
space:
mode:
author Christopher Walker2011-12-15 07:32:16 +0100
committer Niels Horn2011-12-18 03:07:51 +0100
commit0208d4932e2ad17940e48da746d2c8f14025d6c6 (patch)
tree01581d472e746f898aa87275ed7742fd36ea3087 /system/nss_ldap/doinst.sh
parent4ed39d9caefe05578d6ae3fb22d3cfd9bf679c71 (diff)
downloadslackbuilds-0208d4932e2ad17940e48da746d2c8f14025d6c6.tar.gz
system/nss_ldap: Updated for version 265.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/nss_ldap/doinst.sh')
-rw-r--r--system/nss_ldap/doinst.sh8
1 files changed, 3 insertions, 5 deletions
diff --git a/system/nss_ldap/doinst.sh b/system/nss_ldap/doinst.sh
index abd60ac5b6..54dc31ad8a 100644
--- a/system/nss_ldap/doinst.sh
+++ b/system/nss_ldap/doinst.sh
@@ -1,14 +1,12 @@
-#!/bin/sh
config() {
NEW="$1"
- OLD="`dirname $NEW`/`basename $NEW .new`"
- # If there's no config file by that name, mv it over:
+ OLD="$(dirname $NEW)/$(basename $NEW .new)"
if [ ! -r $OLD ]; then
mv $NEW $OLD
- elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then # toss the redundant copy
+ elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
rm $NEW
fi
- # Otherwise, we leave the .new copy for the admin to consider...
}
+
config etc/ldap.conf.new