From e9c902a0bacad18483702597efeaf309e2ea5ed3 Mon Sep 17 00:00:00 2001 From: Daniel de Kok Date: Thu, 13 May 2010 00:22:52 +0200 Subject: desktop/matchbox-window-manager: Updated for version 1.1 --- desktop/matchbox-window-manager/doinst.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 desktop/matchbox-window-manager/doinst.sh (limited to 'desktop/matchbox-window-manager/doinst.sh') 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 + -- cgit v1.2.3