aboutsummaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-12-05 10:16:14 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-12-05 10:16:14 +0100
commit5e34246dc6eee923579d788fa6a0cbb89a3efa91 (patch)
tree1fccbbdbb5934528a8b644140bfd2a312a245b64 /debian
parent66048042bd3249946e3154adcce01a771d67d47d (diff)
downloadayatana-indicator-notifications-5e34246dc6eee923579d788fa6a0cbb89a3efa91.tar.gz
ayatana-indicator-notifications-5e34246dc6eee923579d788fa6a0cbb89a3efa91.tar.bz2
ayatana-indicator-notifications-5e34246dc6eee923579d788fa6a0cbb89a3efa91.zip
debian/postinst: Remove. The libglib2.0-bin package has a trigger for that for years.
Diffstat (limited to 'debian')
-rw-r--r--debian/postinst40
1 files changed, 0 insertions, 40 deletions
diff --git a/debian/postinst b/debian/postinst
deleted file mode 100644
index 59b7114..0000000
--- a/debian/postinst
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/sh
-# postinst script for ayatana-indicator-notifications
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * <postinst> `configure' <most-recently-configured-version>
-# * <old-postinst> `abort-upgrade' <new version>
-# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
-# <new-version>
-# * <postinst> `abort-remove'
-# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
-# <failed-install-package> <version> `removing'
-# <conflicting-package> <version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
- configure)
- glib-compile-schemas /usr/share/glib-2.0/schemas
- ;;
-
- abort-upgrade|abort-remove|abort-deconfigure)
- ;;
-
- *)
- echo "postinst called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0