This file is indexed.

postrm is in openjdk-6-jre-headless 6b38-1.13.10-1~deb7u1.

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
#!/bin/sh -e

multiarch=x86_64-linux-gnu
jdirname=java-6-openjdk-amd64
etcdir=/etc/java-6-openjdk

case "$1" in
purge)
    if [ -z "$jdirname" ] || [ -z "$etcdir" ]; then
	echo >&2 "$(basename $0): Internal error"
	exit 1
    fi
    # removals of config files in /etc is handled by dpkg

    # XXX should remove /etc/.java ???
    ;;
esac