preinst is in openjdk-6-jdk 6b31-1.13.3-1ubuntu1.
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 | #!/bin/sh
set -e
multiarch=x86_64-linux-gnu
old_basedir=/usr/lib/jvm/java-6-openjdk
jdk_tools='appletviewer apt extcheck idlj jar jarsigner javac javadoc javah javap jconsole jdb jhat jinfo jmap jps jrunscript jsadebugd jstack jstat jstatd native2ascii rmic schemagen serialver wsgen wsimport xjc'
case "$1" in
upgrade)
if [ -n "$multiarch" ] && [ -n "$2" ]; then
for i in $jdk_tools; do
if [ -n "$(update-alternatives --list $i 2>/dev/null | grep ^$old_basedir/)" ]; then
update-alternatives --remove $i $old_basedir/bin/$i || true
fi
done
fi
;;
esac
exit 0
|