diff options
author | kali <kali@leap.se> | 2012-08-09 22:58:25 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2012-08-09 22:58:25 +0900 |
commit | 63e7e66dc2e820186180f96e71fd0a0541b0bbcf (patch) | |
tree | 4400904ef9b2df09b02a8f7a7da47d7ea5169dce /debian/postinst.ex | |
parent | 28b6730601521cffa72c15e6d244f017f7c5b64a (diff) |
remove debian/ from integration branch (moved to its own branch)
Diffstat (limited to 'debian/postinst.ex')
-rw-r--r-- | debian/postinst.ex | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/debian/postinst.ex b/debian/postinst.ex deleted file mode 100644 index 888928ca..00000000 --- a/debian/postinst.ex +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# postinst script for python-leap-client -# -# 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) - ;; - - 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 |