From e988a8342b7fffeee5aa5fed3f9489ffc8355e2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Thu, 21 May 2015 21:28:26 +0200 Subject: cil.preinst: Remove etc/bash_completion.d/cil at upgrade --- debian/cil.preinst | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 debian/cil.preinst (limited to 'debian/cil.preinst') diff --git a/debian/cil.preinst b/debian/cil.preinst new file mode 100644 index 0000000..3006fce --- /dev/null +++ b/debian/cil.preinst @@ -0,0 +1,35 @@ +#!/bin/sh +# preinst script for icc-utils +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `install' +# * `install' +# * `upgrade' +# * `abort-upgrade' +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + upgrade) + # new 0.07.0-10 + if [ -e /etc/bash_completion.d/cil ]; then + rm -f /etc/bash_completion.d/cil + fi + ;; + *) + 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 -- cgit v1.2.3