Disable GTK+ XInput bugfix by default (tracker #3429416)
[xournal.git] / debian / preinst.ex
blobd25e1d6a92b7d0cf1ed3f8c5c632f85357c8b677
1 #! /bin/sh
2 # preinst script for xournal
4 # see: dh_installdeb(1)
6 set -e
8 # summary of how this script can be called:
9 # * <new-preinst> `install'
10 # * <new-preinst> `install' <old-version>
11 # * <new-preinst> `upgrade' <old-version>
12 # * <old-preinst> `abort-upgrade' <new-version>
14 # for details, see http://www.debian.org/doc/debian-policy/ or
15 # the debian-policy package
18 case "$1" in
19 install|upgrade)
20 # if [ "$1" = "upgrade" ]
21 # then
22 # start-stop-daemon --stop --quiet --oknodo \
23 # --pidfile /var/run/xournal.pid \
24 # --exec /usr/sbin/xournal 2>/dev/null || true
25 # fi
28 abort-upgrade)
32 echo "preinst called with unknown argument \`$1'" >&2
33 exit 1
35 esac
37 # dh_installdeb will replace this with shell code automatically
38 # generated by other debhelper scripts.
40 #DEBHELPER#
42 exit 0