summaryrefslogtreecommitdiffstats
path: root/desktop/grun/doinst.sh
diff options
context:
space:
mode:
author dsomero2012-09-28 05:17:16 +0200
committer Robby Workman2012-09-30 00:17:39 +0200
commit4d26f60eedc8d6685b273cebb9a23227eddb66c0 (patch)
treefd295da23fc326ceb736eef6d97952da4e955dd4 /desktop/grun/doinst.sh
parent05df94092e0800d2fda0372055f3d1a81d9b5aa6 (diff)
downloadslackbuilds-4d26f60eedc8d6685b273cebb9a23227eddb66c0.tar.gz
desktop/grun: Fixed (Don't clobber config files)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop/grun/doinst.sh')
-rw-r--r--desktop/grun/doinst.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/desktop/grun/doinst.sh b/desktop/grun/doinst.sh
new file mode 100644
index 0000000000..76021c79bd
--- /dev/null
+++ b/desktop/grun/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/consfile.new
+config etc/gassoc.new