aboutsummaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-12-05 10:30:30 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-12-05 10:30:30 +0100
commit097763da88ee3b73304542520008a89708c46be7 (patch)
tree6a9da1d86a023d642c38e80e8a5e52a40378498d /debian
parent855a83483b7d5b12fb1ecb4f440aa8e8bbab9d8c (diff)
downloadayatana-indicator-sound-097763da88ee3b73304542520008a89708c46be7.tar.gz
ayatana-indicator-sound-097763da88ee3b73304542520008a89708c46be7.tar.bz2
ayatana-indicator-sound-097763da88ee3b73304542520008a89708c46be7.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 6ae772c..0000000
--- a/debian/postinst
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/sh
-# postinst script for ayatana-indicator-sound
-#
-# 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