diff options
Diffstat (limited to 'system/smbldap-tools/doinst.sh')
-rw-r--r-- | system/smbldap-tools/doinst.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/system/smbldap-tools/doinst.sh b/system/smbldap-tools/doinst.sh new file mode 100644 index 0000000000..5671bb19a3 --- /dev/null +++ b/system/smbldap-tools/doinst.sh @@ -0,0 +1,15 @@ +#!/bin/sh +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/smbldap-tools/smbldap.conf.new +config etc/smbldap-tools/smbldap_bind.conf.new + |