diff options
Diffstat (limited to 'system/nss_ldap/doinst.sh')
-rw-r--r-- | system/nss_ldap/doinst.sh | 8 |
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 |