File: xterm.prerm

package info (click to toggle)
xterm 222-1etch4
  • links: PTS
  • area: main
  • in suites: etch
  • size: 3,552 kB
  • ctags: 4,131
  • sloc: ansic: 45,739; sh: 3,719; perl: 740; makefile: 333
file content (28 lines) | stat: -rw-r--r-- 832 bytes parent folder | download | duplicates (2)
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
# Debian xterm package pre-removal script
# Copyright 1998, 1999, 2004 Branden Robinson.
# Licensed under the GNU General Public License, version 2.  See the file
# /usr/share/common-licenses/GPL or <http://www.gnu.org/copyleft/gpl.txt>.
# Acknowledgements to Stephen Early, Mark Eichin, and Manoj Srivastava.

# $Id: xterm.prerm.in 189 2005-06-11 00:04:27Z branden $

set -e

THIS_PACKAGE=xterm
THIS_SCRIPT=prerm

#INCLUDE_SHELL_LIB#

if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
  update-alternatives --remove x-terminal-emulator /usr/bin/koi8rxterm
  update-alternatives --remove x-terminal-emulator /usr/bin/uxterm
  update-alternatives --remove x-terminal-emulator /usr/bin/xterm
  update-alternatives --remove x-terminal-emulator /usr/bin/lxterm
fi

#DEBHELPER#

exit 0

# vim:set ai et sts=2 sw=2 tw=0: