summaryrefslogtreecommitdiffstats
path: root/dilos/core/tdebase/debian/kdesktop-trinity.preinst
blob: d6d6014c9a9100a4dd990276cd311260092883ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#! /bin/sh -e

if [ "${BASEDIR:=/}" = "/" ]; then
	BASEDIR=""
fi

case "$1" in

    upgrade)
	rm -f /etc/trinity/debian/debian.desktop
	rm -f /etc/trinity/debian/debian.html
    ;;

    install)
    ;;

    abort-upgrade)
    ;;

    *)
        echo "preinst called with unknown argument \`$1'" >&2
        exit 1
    ;;

esac

#DEBHELPER#

exit 0