~ubuntu-branches/ubuntu/wily/openjdk-7/wily

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#