diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-03-29 21:07:18 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-03-29 21:07:18 +0200 |
commit | 8cb71b7ec3f5f3304149ea8f49150518ec230e38 (patch) | |
tree | 9e09b19f7e0cb6fa481d00031a39c36a6a19aac0 /debian/impressive-display.postinst | |
parent | fc2392fa86311a40e123931df544a091817bc1c5 (diff) | |
download | impressive-display-0.2.1.tar.gz impressive-display-0.2.1.tar.bz2 impressive-display-0.2.1.zip |
release 0.2.10.2.1
Diffstat (limited to 'debian/impressive-display.postinst')
-rwxr-xr-x | debian/impressive-display.postinst | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/debian/impressive-display.postinst b/debian/impressive-display.postinst deleted file mode 100755 index 18ec1d9..0000000 --- a/debian/impressive-display.postinst +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh -# postinst script for impressive-display -# -# 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) - update-alternatives --install /usr/bin/x-session-manager \ - x-session-manager /usr/bin/impressive-display 20 \ - --slave /usr/share/man/man1/x-session-manager.1.gz \ - x-session-manager.1.gz /usr/share/man/man1/impressive-display.1.gz - - ;; - 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 |