summaryrefslogtreecommitdiff
path: root/debian/postinst.ex
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-09-15 15:34:58 -0300
committerSilvio Rhatto <rhatto@riseup.net>2013-09-15 15:34:58 -0300
commit97b43942fbe166cd7b0818e4f33f358a86070754 (patch)
tree42ba5617687baa27c7229113167d2803c0191be3 /debian/postinst.ex
parentaaae5b25139dd4b40193ee4853ed5bbd1bd5846a (diff)
downloadkeyringer-97b43942fbe166cd7b0818e4f33f358a86070754.tar.gz
keyringer-97b43942fbe166cd7b0818e4f33f358a86070754.tar.bz2
Removing unused debian 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 4c62489..0000000
--- a/debian/postinst.ex
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/sh
-# postinst script for keyringer
-#
-# 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