summaryrefslogtreecommitdiffstats
path: root/desktop/icewm/doinst.sh
diff options
context:
space:
mode:
author dsomero2012-09-29 02:25:19 +0200
committer Robby Workman2012-09-30 00:17:40 +0200
commit3032ce580f99e781f534ffa6cad45bd039950b58 (patch)
tree0afe14c4e741a6007bd36bd21a4530823da05b7a /desktop/icewm/doinst.sh
parenta9df89a5db47bc7e6bda28b205a6fb1155bfa4cb (diff)
downloadslackbuilds-3032ce580f99e781f534ffa6cad45bd039950b58.tar.gz
desktop/icewm: Fixed (Don't clobber config files)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop/icewm/doinst.sh')
-rw-r--r--desktop/icewm/doinst.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/desktop/icewm/doinst.sh b/desktop/icewm/doinst.sh
index a9ca196938..ca452f155f 100644
--- a/desktop/icewm/doinst.sh
+++ b/desktop/icewm/doinst.sh
@@ -1,3 +1,18 @@
+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/X11/xinit/xinitrc.icewm.new
+
if [ -x /usr/bin/update-desktop-database ]; then
/usr/bin/update-desktop-database -q usr/share/applications 2>/dev/null
fi