summaryrefslogtreecommitdiffstats
path: root/system/smbldap-tools/doinst.sh
diff options
context:
space:
mode:
author Christopher Walker2010-05-13 01:01:10 +0200
committer Robby Workman2010-05-13 01:01:10 +0200
commit4d4710b1beb39c8171f4d8ca0fbb7981ddce3263 (patch)
tree07afcf43f71b8a6f51f8c1e455859f626816d551 /system/smbldap-tools/doinst.sh
parent71b68523c6b940e9e4b5763c132ddce0dbb324dd (diff)
downloadslackbuilds-4d4710b1beb39c8171f4d8ca0fbb7981ddce3263.tar.gz
system/smbldap-tools: Added to 13.0 repository
Diffstat (limited to 'system/smbldap-tools/doinst.sh')
-rw-r--r--system/smbldap-tools/doinst.sh15
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
+