diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2012-09-06 22:49:59 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-06 22:49:59 -0500 |
commit | b9897895d6e2e79e8b0366064dd3f673c4e5687b (patch) | |
tree | 28bcb7e629ed9675d5b8afb8d3eebb613470794f /desktop/matchbox-window-manager/doinst.sh | |
parent | fd0d1f85b585a43ec0df34a547cfb21f1e7a51dc (diff) |
desktop/matchbox-window-manager: Removed (no SBo maintainer)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'desktop/matchbox-window-manager/doinst.sh')
-rw-r--r-- | desktop/matchbox-window-manager/doinst.sh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/desktop/matchbox-window-manager/doinst.sh b/desktop/matchbox-window-manager/doinst.sh deleted file mode 100644 index d816817b8edb0..0000000000000 --- a/desktop/matchbox-window-manager/doinst.sh +++ /dev/null @@ -1,15 +0,0 @@ -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 - |