27 lines
543 B
Plaintext
27 lines
543 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
basedir=/@basedir@
|
||
|
jre_tools='@jre_hl_tools@'
|
||
|
|
||
|
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
|
||
|
for i in $jre_tools; do
|
||
|
update-alternatives --remove $i $basedir/bin/$i
|
||
|
done
|
||
|
|
||
|
if which update-binfmts >/dev/null; then
|
||
|
# try to remove and ignore the error
|
||
|
if [ -e /var/lib/binfmts/@basename@ ]; then
|
||
|
update-binfmts --package @basename@ \
|
||
|
--remove jar /usr/bin/jexec || true
|
||
|
fi
|
||
|
fi
|
||
|
|
||
|
update-alternatives --remove jexec $basedir/lib/jexec
|
||
|
|
||
|
rm -f $basedir/lib/*/classes.jsa
|
||
|
fi
|
||
|
|
||
|
#DEBHELPER#
|