File: lxterminal.prerm

package info (click to toggle)
lxterminal 0.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,056 kB
  • ctags: 361
  • sloc: ansic: 2,481; sh: 1,259; xml: 79; makefile: 77; python: 14
file content (22 lines) | stat: -rw-r--r-- 264 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

set -e

case "${1}" in
	remove|upgrade|deconfigure)
		update-alternatives --remove x-terminal-emulator /usr/bin/lxterminal
		;;

	failed-upgrade)

		;;

	*)
		echo "prerm called with unknown argument \`${1}'" >&2
		exit 1
		;;
esac

#DEBHELPER#

exit 0