summaryrefslogtreecommitdiff
path: root/debian/sane.preinst
blob: 9b78cf40166bc70adec500a8ed1f23632755325c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
set -e

case "$1" in
    install|upgrade|abort-upgrade)
#
# remove obsolete link
#
	if [ -L /usr/lib/gimp/2.0/plug-ins/xscanimage ] ; then
	    rm -f /usr/lib/gimp/2.0/plug-ins/xscanimage
	fi
	;;
    *)
        echo "preinst called with unknown argument \`$1'" >&2
        exit 1
	;;
esac


#DEBHELPER#