diff options
author | Daniel de Kok <danieldk@pobox.com> | 2010-05-13 00:22:52 +0200 |
---|---|---|
committer | Michiel van Wessem <michiel@slackbuilds.org> | 2010-05-13 00:22:52 +0200 |
commit | e9c902a0bacad18483702597efeaf309e2ea5ed3 (patch) | |
tree | e8c7e4712ec221b64d69f8e596a4257bfe00fb89 /desktop/matchbox-window-manager/doinst.sh | |
parent | 4fe08c2c369845698ad04e024720c6a8c75ff21b (diff) | |
download | slackbuilds-e9c902a0bacad18483702597efeaf309e2ea5ed3.tar.gz |
desktop/matchbox-window-manager: Updated for version 1.1
Diffstat (limited to 'desktop/matchbox-window-manager/doinst.sh')
-rw-r--r-- | desktop/matchbox-window-manager/doinst.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/desktop/matchbox-window-manager/doinst.sh b/desktop/matchbox-window-manager/doinst.sh new file mode 100644 index 0000000000..d816817b8e --- /dev/null +++ b/desktop/matchbox-window-manager/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/matchbox/kbdconfig.new + |