From af5c905ec49085b7c396caf2c5166f0c34cbeb3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Wed, 3 Apr 2019 18:05:50 +0200 Subject: DEB: use _base folder for a distro instead of specific distros (squeeze and maverick). MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- ubuntu/_base/kdeutils/debian/ksim-trinity.preinst | 44 +++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 ubuntu/_base/kdeutils/debian/ksim-trinity.preinst (limited to 'ubuntu/_base/kdeutils/debian/ksim-trinity.preinst') diff --git a/ubuntu/_base/kdeutils/debian/ksim-trinity.preinst b/ubuntu/_base/kdeutils/debian/ksim-trinity.preinst new file mode 100644 index 000000000..71c296dca --- /dev/null +++ b/ubuntu/_base/kdeutils/debian/ksim-trinity.preinst @@ -0,0 +1,44 @@ +#! /bin/sh +# preinst script for ksim +# +# 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 + install|upgrade) + if [ "$1" = "upgrade" ] + then + # Debian testing (Sarge) files + rm /etc/trinity/ksimrc > /dev/null 2>&1 || true + fi + ;; + + 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 + + -- cgit v1.2.1