This file is indexed.

prerm is in vtwm 5.4.7-2.2.

This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.

The actual contents of the file can be viewed below.

 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
#!/bin/sh
# Debian vtwm package pre-removal script
# Copyright 1999, 2001 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>.

# $Id: prerm 47 2005-11-05 22:22:55Z branden $

set -e

trap "echo ;\
      echo 'Received signal.  Aborting removal of vtwm package.' ;\
      echo ;\
      exit 1" 1 2 3 15



case "$1" in
    upgrade|failed-upgrade) ;;
    remove|deconfigure)
        update-alternatives --remove x-window-manager /usr/bin/vtwm
        ;;
esac

exit 0

# vim:set ai et sts=4 sw=4 tw=80: