From 0208d4932e2ad17940e48da746d2c8f14025d6c6 Mon Sep 17 00:00:00 2001 From: Christopher Walker Date: Thu, 15 Dec 2011 00:32:16 -0600 Subject: system/nss_ldap: Updated for version 265. Signed-off-by: Robby Workman --- system/nss_ldap/doinst.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'system/nss_ldap/doinst.sh') 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 -- cgit v1.2.3