diff options
author | Binh Nguyen <binhnguyen@fastmail.fm> | 2011-07-20 10:27:59 -0300 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-07-21 22:52:14 -0500 |
commit | 2347057e381142b044dd6bc981c6985ec8c17d5a (patch) | |
tree | 6add2877cfd5868423b2fbd04c517d4678f3e42c /desktop/wbar/doinst.sh | |
parent | 397db8da59dd174a69bda4994658d66dbe15412e (diff) | |
download | slackbuilds-2347057e381142b044dd6bc981c6985ec8c17d5a.tar.gz |
desktop/wbar: Updated for version 2.2.2.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'desktop/wbar/doinst.sh')
-rw-r--r-- | desktop/wbar/doinst.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/desktop/wbar/doinst.sh b/desktop/wbar/doinst.sh new file mode 100644 index 0000000000..653892d729 --- /dev/null +++ b/desktop/wbar/doinst.sh @@ -0,0 +1,14 @@ +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/default/wbar/wbar.cfg.new |