This file is indexed.

postinst is in openjdk-6-jre-lib 6b24-1.11.1-4ubuntu2.

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

set -e

with_tzdata=yes

if [ "$with_tzdata" = yes ]; then
    if [ ! -h /usr/lib/jvm/java-6-openjdk-i386/jre/lib/zi ] && [ -d /usr/lib/jvm/java-6-openjdk-i386/jre/lib/zi ]; then
	rm -rf /usr/lib/jvm/java-6-openjdk-i386/jre/lib/zi
	ln -s ../../../../../share/javazi /usr/lib/jvm/java-6-openjdk-i386/jre/lib/zi
    fi
fi