summaryrefslogtreecommitdiffstats
path: root/dilos/core/tdebase/debian/konsole-trinity.preinst
blob: 962a2cb7e32dcd23955364905ee75df86b66fb81 (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
#!/bin/sh -e

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

case "$1" in

    upgrade)
	rm -f /etc/trinity/konsolerc
    ;;

    install)
    ;;

    abort-upgrade)
    ;;

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

esac

#DEBHELPER#

exit 0