summaryrefslogtreecommitdiffstats
path: root/extra/source/wicd/doinst.sh
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2020-08-01 19:08:49 +0000
committer Eric Hameleers <alien@slackware.com>2020-08-02 08:59:52 +0200
commit7146524f273ad7add0d5b533156d35d07896ed8c (patch)
tree367bba6cd7d1ed2bd012e2f622b4cf5e13046959 /extra/source/wicd/doinst.sh
parent85535b49c47cc8cec1dd802c716155e08a75aeb4 (diff)
downloadcurrent-7146524f273ad7add0d5b533156d35d07896ed8c.tar.gz
current-7146524f273ad7add0d5b533156d35d07896ed8c.tar.xz
Sat Aug 1 19:08:49 UTC 202020200801190849
a/cryptsetup-2.3.3-x86_64-2.txz: Rebuilt. Recompiled against json-c-0.15_20200726. l/imagemagick-7.0.10_25-x86_64-1.txz: Upgraded. l/json-c-0.15_20200726-x86_64-1.txz: Upgraded. Shared library .so-version bump. l/urwid-1.0.3-x86_64-5.txz: Removed. This is an ancient version that was only used by wicd. n/bind-9.16.5-x86_64-2.txz: Rebuilt. Recompiled against json-c-0.15_20200726. x/libmypaint-1.6.1-x86_64-2.txz: Rebuilt. Recompiled against json-c-0.15_20200726. xap/gimp-2.10.20-x86_64-2.txz: Rebuilt. Recompiled against json-c-0.15_20200726. extra/wicd/wicd-1.7.4-x86_64-3.txz: Removed. This is unmaintained, possibly insecure, and doesn't work with Python versions newer than 2.7.18. NetworkManager is a better choice these days.
Diffstat (limited to 'extra/source/wicd/doinst.sh')
-rw-r--r--extra/source/wicd/doinst.sh37
1 files changed, 0 insertions, 37 deletions
diff --git a/extra/source/wicd/doinst.sh b/extra/source/wicd/doinst.sh
deleted file mode 100644
index 78732c5b9..000000000
--- a/extra/source/wicd/doinst.sh
+++ /dev/null
@@ -1,37 +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...
-}
-
-# Keep same perms on rc.wicd.new:
-if [ -e etc/rc.d/rc.wicd ]; then
- cp -a etc/rc.d/rc.wicd etc/rc.d/rc.wicd.new.incoming
- cat etc/rc.d/rc.wicd.new > etc/rc.d/rc.wicd.new.incoming
- mv etc/rc.d/rc.wicd.new.incoming etc/rc.d/rc.wicd.new
-fi
-
-# Update desktop menu
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
-
-# Update icon cache if one exists
-if [ -r usr/share/icons/hicolor/icon-theme.cache ]; then
- if [ -x /usr/bin/gtk-update-icon-cache ]; then
- /usr/bin/gtk-update-icon-cache -t -f usr/share/icons/hicolor >/dev/null 2>&1
- fi
-fi
-
-config etc/dbus-1/system.d/wicd.conf.new
-config etc/rc.d/rc.wicd.new
-config etc/wicd/manager-settings.conf.new
-config etc/logrotate.d/wicd.logrotate.new
-