summaryrefslogtreecommitdiffstats
path: root/development/diakonos/doinst.sh
diff options
context:
space:
mode:
author Phillip Warner2010-05-11 22:53:29 +0200
committer David Somero2010-05-11 22:53:29 +0200
commitbc78728a9a7720e2fb0d0d13a548b370446404b9 (patch)
tree20047d8a9c2e54eeb23bc78997383f26e54d2d42 /development/diakonos/doinst.sh
parentc4bb54ca8edb9df69a92fc936a454edb32c390d8 (diff)
downloadslackbuilds-bc78728a9a7720e2fb0d0d13a548b370446404b9.tar.gz
development/diakonos: Added to 12.1 repository
Diffstat (limited to 'development/diakonos/doinst.sh')
-rw-r--r--development/diakonos/doinst.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/development/diakonos/doinst.sh b/development/diakonos/doinst.sh
new file mode 100644
index 0000000000..94b73858b8
--- /dev/null
+++ b/development/diakonos/doinst.sh
@@ -0,0 +1,16 @@
+#!/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/diakonos.conf.new