File: maliit-framework.prerm

package info (click to toggle)
maliit-framework 2.3.0-5
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,412 kB
  • sloc: cpp: 13,110; ansic: 2,506; xml: 299; sh: 34; makefile: 27; sed: 4
file content (18 lines) | stat: -rw-r--r-- 293 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
set -e

case "$1" in
    remove|upgrade|deconfigure)
	    update-alternatives \
            --remove xinput-all_ALL \
            /etc/X11/xinit/xinput.d/maliit ;
	;;
    failed-upgrade)
	;;
    *)
	echo "prerm called with unknown argument \`$1'" >&2
	exit 1
   ;;
esac

#DEBHELPER#