summaryrefslogtreecommitdiff
path: root/debian/preinst.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/preinst.ex
parentaaae5b25139dd4b40193ee4853ed5bbd1bd5846a (diff)
downloadkeyringer-97b43942fbe166cd7b0818e4f33f358a86070754.tar.gz
keyringer-97b43942fbe166cd7b0818e4f33f358a86070754.tar.bz2
Removing unused debian templates
Diffstat (limited to 'debian/preinst.ex')
-rw-r--r--debian/preinst.ex35
1 files changed, 0 insertions, 35 deletions
diff --git a/debian/preinst.ex b/debian/preinst.ex
deleted file mode 100644
index 6421ff8..0000000
--- a/debian/preinst.ex
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-# preinst script for keyringer
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * <new-preinst> `install'
-# * <new-preinst> `install' <old-version>
-# * <new-preinst> `upgrade' <old-version>
-# * <old-preinst> `abort-upgrade' <new-version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
- install|upgrade)
- ;;
-
- abort-upgrade)
- ;;
-
- *)
- echo "preinst 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