summaryrefslogtreecommitdiffstats
path: root/office/wyrd/doinst.sh
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2013-02-24 01:10:25 -0600
committer Robby Workman <rworkman@slackbuilds.org>2013-02-24 10:23:10 -0600
commitda48480fec8e28b0fc41a9688589ea22a01a9f04 (patch)
tree3c37cc5eb199e7dfe869fb61bb1b1100ddcf0b52 /office/wyrd/doinst.sh
parentbf30e26a0b914d6daee19b7bb23b72a2b180273f (diff)
downloadslackbuilds-da48480fec8e28b0fc41a9688589ea22a01a9f04.tar.gz
slackbuilds-da48480fec8e28b0fc41a9688589ea22a01a9f04.tar.xz
office/wyrd: Don't clobber config file on package upgrades
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'office/wyrd/doinst.sh')
-rw-r--r--office/wyrd/doinst.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/office/wyrd/doinst.sh b/office/wyrd/doinst.sh
new file mode 100644
index 0000000000..8af25febd8
--- /dev/null
+++ b/office/wyrd/doinst.sh
@@ -0,0 +1,15 @@
+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/wyrdrc.new
+