diff options
author | François Andriot <albator78@libertysurf.fr> | 2014-03-16 13:01:25 +0100 |
---|---|---|
committer | François Andriot <albator78@libertysurf.fr> | 2014-03-16 13:01:25 +0100 |
commit | ac9528cdc30a02a5de9bee61d984ce5e887738db (patch) | |
tree | da0d46e2887ebd9ff3322d7b5c751d29b2086085 /ubuntu/maverick_automake/kdenetwork/debian/kopete-kde3.postinst | |
parent | 86edbad7c86151df1ff3ba015b466a634920e3e7 (diff) | |
parent | f923c3ffdf627da3a7637db245b24b9f29f7c6a1 (diff) | |
download | tde-packaging-ac9528cdc30a02a5de9bee61d984ce5e887738db.tar.gz tde-packaging-ac9528cdc30a02a5de9bee61d984ce5e887738db.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tde-packaging
Diffstat (limited to 'ubuntu/maverick_automake/kdenetwork/debian/kopete-kde3.postinst')
-rw-r--r-- | ubuntu/maverick_automake/kdenetwork/debian/kopete-kde3.postinst | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/ubuntu/maverick_automake/kdenetwork/debian/kopete-kde3.postinst b/ubuntu/maverick_automake/kdenetwork/debian/kopete-kde3.postinst deleted file mode 100644 index dea105c69..000000000 --- a/ubuntu/maverick_automake/kdenetwork/debian/kopete-kde3.postinst +++ /dev/null @@ -1,41 +0,0 @@ -#! /bin/sh -# postinst script for kopete -# -# 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> -# * <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 --auto irc.protocol || true - update-alternatives --verbose --install /usr/share/services/irc.protocol irc.protocol /opt/kde3/share/apps/kopete/irc.protocol 40 || true - ;; - - 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 |