summaryrefslogtreecommitdiffstats
path: root/development/diakonos/doinst.sh
diff options
context:
space:
mode:
author Heinz Wiesinger2010-05-13 00:07:01 +0200
committer Heinz Wiesinger2010-05-13 00:07:01 +0200
commit5b8e267ebe431e546f62774ae30eb1f1575baac3 (patch)
tree5fcc997a47b1505be4c02dc88ca556c074e0b55a /development/diakonos/doinst.sh
parentb1b24978c06a65e2126b35a1a9c0896ee776ed2c (diff)
downloadslackbuilds-5b8e267ebe431e546f62774ae30eb1f1575baac3.tar.gz
development/diakonos: Removed from 13.0 repository
Diffstat (limited to 'development/diakonos/doinst.sh')
-rw-r--r--development/diakonos/doinst.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/development/diakonos/doinst.sh b/development/diakonos/doinst.sh
deleted file mode 100644
index 9d207adff1..0000000000
--- a/development/diakonos/doinst.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-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
-