aboutsummaryrefslogtreecommitdiff
path: root/debian/JB-jre.prerm.in
blob: f32dbe6fcf5dd45409cc5ab2bb3463719e4cffe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e

basedir=/@basedir@
jre_tools='@jre_tools@'

if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
    for i in $jre_tools; do
	update-alternatives --remove $i $basedir/jre/bin/$i
    done
fi

#DEBHELPER#