diff options
author | Marek Srejma <sam@modweb.de> | 2021-02-26 17:51:28 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-02-27 08:24:28 +0700 |
commit | dce18bbfe4405cb691c9f196e9a0b545655f0005 (patch) | |
tree | 432bd5fb777319043e2defe3d558f287ed9b4d3a /graphics/xmedcon/doinst.sh | |
parent | 0707ec073b931dfd1f42d46785a37921d0929f93 (diff) |
graphics/xmedcon: Updated for version 0.17.0.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'graphics/xmedcon/doinst.sh')
-rw-r--r-- | graphics/xmedcon/doinst.sh | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/graphics/xmedcon/doinst.sh b/graphics/xmedcon/doinst.sh index 9b66a71f65..9a8ded3c60 100644 --- a/graphics/xmedcon/doinst.sh +++ b/graphics/xmedcon/doinst.sh @@ -1,29 +1,3 @@ -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... -} - -preserve_perms() { - NEW="$1" - OLD="$(dirname $NEW)/$(basename $NEW .new)" - if [ -e $OLD ]; then - cp -a $OLD ${NEW}.incoming - cat $NEW > ${NEW}.incoming - mv ${NEW}.incoming $NEW - fi - config $NEW -} - -config etc/xmedconrc.new - if [ -x /usr/bin/update-desktop-database ]; then /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 fi |