From 1b6efb141bcf333e5c73a520e701d1de8cafcf4e Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 4 Nov 2011 12:06:08 -0500 Subject: Rename kde packages to tde --- .../maverick/tdeutils/debian/ksim-trinity.preinst | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 ubuntu/maverick/tdeutils/debian/ksim-trinity.preinst (limited to 'ubuntu/maverick/tdeutils/debian/ksim-trinity.preinst') diff --git a/ubuntu/maverick/tdeutils/debian/ksim-trinity.preinst b/ubuntu/maverick/tdeutils/debian/ksim-trinity.preinst new file mode 100644 index 000000000..71c296dca --- /dev/null +++ b/ubuntu/maverick/tdeutils/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