diff options
author | Micah Anderson <micah@riseup.net> | 2012-08-15 16:21:40 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2012-08-15 16:21:40 -0400 |
commit | 72bb9aa8bb2ce814572063974abe719920b87da7 (patch) | |
tree | 211920ef85639ec1ec30797c195233c510b8c7fd /debian/postinst.ex | |
parent | c46d8da153ac658c8bd145376e22b1218db1090a (diff) |
remove debian directory from master
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 |