summaryrefslogtreecommitdiff
path: root/debian/cil.preinst
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2015-06-14 12:45:48 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2015-06-14 12:45:48 +0200
commit797e59ab16ec23d22b823c2b59fc63b31d515d55 (patch)
tree10456e186fc1b35c76b88e85d6cd11c7ad29487d /debian/cil.preinst
parent0a9d9e0d12a6426d3de424d1835ef6287ba7f877 (diff)
Move rm_confflie from cil.preinst to cil.maintscript
Diffstat (limited to 'debian/cil.preinst')
-rw-r--r--debian/cil.preinst34
1 files changed, 0 insertions, 34 deletions
diff --git a/debian/cil.preinst b/debian/cil.preinst
deleted file mode 100644
index 14b531d..0000000
--- a/debian/cil.preinst
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-# preinst script for cil
-#
-# 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
- upgrade)
- # new 0.07.0-10
- # needs Pre-Depends: dpkg (>= 1.15.7.2)
- dpkg-maintscript-helper rm_conffile /etc/bash_completion.d/cil 0.07.0-10 -- "$@"
- ;;
- *)
- 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