aboutsummaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-12-05 10:30:15 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-12-05 10:30:15 +0100
commit86bf6f75914bb7e4ed1bfdf5690a98d0d97d0846 (patch)
tree8e70d40f80016005043d390520015b409158232f /debian
parent2ff8ca38660be71cefaa4771bbcc1802b95c5f55 (diff)
downloadayatana-indicator-session-86bf6f75914bb7e4ed1bfdf5690a98d0d97d0846.tar.gz
ayatana-indicator-session-86bf6f75914bb7e4ed1bfdf5690a98d0d97d0846.tar.bz2
ayatana-indicator-session-86bf6f75914bb7e4ed1bfdf5690a98d0d97d0846.zip
debian/postinst: Drop file. The libglib2.0-bin package has trigger for schema compilation these days (and this for ages, actually).
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 bdf5b42..0000000
--- a/debian/postinst
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/sh
-# postinst script for ayatana-indicator-systemtray
-#
-# 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