diff options
author | Phillip Warner <pc_warner@yahoo.com> | 2010-05-11 22:53:29 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-11 22:53:29 +0200 |
commit | bc78728a9a7720e2fb0d0d13a548b370446404b9 (patch) | |
tree | 20047d8a9c2e54eeb23bc78997383f26e54d2d42 /development/diakonos/doinst.sh | |
parent | c4bb54ca8edb9df69a92fc936a454edb32c390d8 (diff) |
development/diakonos: Added to 12.1 repository
Diffstat (limited to 'development/diakonos/doinst.sh')
-rw-r--r-- | development/diakonos/doinst.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/development/diakonos/doinst.sh b/development/diakonos/doinst.sh new file mode 100644 index 000000000000..94b73858b815 --- /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 |