summaryrefslogtreecommitdiffstats
path: root/ubuntu/_base/tdeadmin/debian/knetworkconf-trinity.postinst
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-11-15 19:23:30 +0800
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-11-15 19:23:30 +0800
commit0277521b268b21caf0ee21202b92784f302baadc (patch)
tree5d856f96adfbe46b57da31cf60daa1084b4e7a1e /ubuntu/_base/tdeadmin/debian/knetworkconf-trinity.postinst
parenteb16e7c7281e182297581fa8d565561869c81bca (diff)
downloadtde-packaging-0277521b268b21caf0ee21202b92784f302baadc.tar.gz
tde-packaging-0277521b268b21caf0ee21202b92784f302baadc.zip
DEB: adjusted to new 'core' folder for main packages.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ubuntu/_base/tdeadmin/debian/knetworkconf-trinity.postinst')
-rw-r--r--ubuntu/_base/tdeadmin/debian/knetworkconf-trinity.postinst40
1 files changed, 0 insertions, 40 deletions
diff --git a/ubuntu/_base/tdeadmin/debian/knetworkconf-trinity.postinst b/ubuntu/_base/tdeadmin/debian/knetworkconf-trinity.postinst
deleted file mode 100644
index 94012bd76..000000000
--- a/ubuntu/_base/tdeadmin/debian/knetworkconf-trinity.postinst
+++ /dev/null
@@ -1,40 +0,0 @@
-#! /bin/sh -e
-
-package_name=knetworkconf-trinity
-
-divert_remove()
- {
- divert=`dpkg-divert --listpackage "$1"`
- if [ -n "$divert" ] && [ "$divert" = "LOCAL" ]; then
- dpkg-divert --remove --local --rename "$1"
- fi
- if [ -n "$divert" ] && [ "$divert" = "$package_name" ]; then
- dpkg-divert --remove --package $package_name --rename "$1"
- fi
- }
-
-case "$1" in
-
- configure)
- divert_remove /usr/share/icons/hicolor/16x16/apps/knetworkconf.png
- divert_remove /usr/share/icons/hicolor/22x22/apps/knetworkconf.png
- divert_remove /usr/share/icons/hicolor/32x32/apps/knetworkconf.png
- divert_remove /usr/share/icons/hicolor/22x22/actions/network_connected_lan_knc.png
- divert_remove /usr/share/icons/hicolor/22x22/actions/network_disconnected_lan.png
- divert_remove /usr/share/icons/hicolor/22x22/actions/network_disconnected_wlan.png
- divert_remove /usr/share/icons/hicolor/22x22/actions/network_traffic_wlan.png
- ;;
-
- abort-upgrade)
- ;;
-
- *)
- echo "preinst called with unknown argument \`$1'" >&2
- exit 1
- ;;
-
-esac
-
-#DEBHELPER#
-
-exit 0