From aaa680c41f65f2ac24364a0b4307b5aef00c0368 Mon Sep 17 00:00:00 2001 From: Denis Kozadaev Date: Thu, 30 Jan 2020 22:13:12 +0300 Subject: DilOS: tdepim build pack Signed-off-by: Denis Kozadaev --- dilos/tdepim/debian/knotes-trinity.preinst | 45 ++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 dilos/tdepim/debian/knotes-trinity.preinst (limited to 'dilos/tdepim/debian/knotes-trinity.preinst') diff --git a/dilos/tdepim/debian/knotes-trinity.preinst b/dilos/tdepim/debian/knotes-trinity.preinst new file mode 100644 index 000000000..686e65306 --- /dev/null +++ b/dilos/tdepim/debian/knotes-trinity.preinst @@ -0,0 +1,45 @@ +#! /bin/sh +# preinst script for knotes +# +# see: dh_installdeb(1) + +set -e +if [ "${BASEDIR:=/}" = "/" ]; then + BASEDIR="" +fi + +# 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 ${BASEDIR}/etc/trinity/knotesrc > /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.3