diff options
author | Michele Calgaro <[email protected]> | 2019-04-03 22:56:40 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2019-04-03 22:56:40 +0900 |
commit | 11394aecd1f906fee2ebd2b90412aeba4651fbff (patch) | |
tree | bcf750380e6d9fc7dbe524e16bbe2afde25dcfa0 /ubuntu/maverick/tdepim/debian/knotes-trinity.preinst | |
parent | d24bd898174453b586ac90f2ef7a60165fa26fde (diff) | |
download | tde-packaging-11394aecd1f906fee2ebd2b90412aeba4651fbff.tar.gz tde-packaging-11394aecd1f906fee2ebd2b90412aeba4651fbff.zip |
DEB: use _base folder for a distro instead of specific distros (squeeze
and maverick).
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'ubuntu/maverick/tdepim/debian/knotes-trinity.preinst')
-rw-r--r-- | ubuntu/maverick/tdepim/debian/knotes-trinity.preinst | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/ubuntu/maverick/tdepim/debian/knotes-trinity.preinst b/ubuntu/maverick/tdepim/debian/knotes-trinity.preinst deleted file mode 100644 index a56aa3945..000000000 --- a/ubuntu/maverick/tdepim/debian/knotes-trinity.preinst +++ /dev/null @@ -1,44 +0,0 @@ -#! /bin/sh -# preinst script for knotes -# -# 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 - install|upgrade) - if [ "$1" = "upgrade" ] - then - # Debian testing (Sarge) files - rm /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 - - |