summaryrefslogtreecommitdiff
path: root/debian/postinst.ex
diff options
context:
space:
mode:
authorkali <kali@leap.se>2013-01-31 06:46:14 +0900
committerkali <kali@leap.se>2013-01-31 06:46:14 +0900
commit1db228bad93eae2ce323416fd84ab7777af8f297 (patch)
tree909df44c153050f62f4741f9dca27cdc9aaa1e4d /debian/postinst.ex
parent7fb9ed2e7279a3eca43ebfc2d5afe8d3f6f08aea (diff)
cleanup templates
Diffstat (limited to 'debian/postinst.ex')
-rw-r--r--debian/postinst.ex39
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