summaryrefslogtreecommitdiffstats
path: root/debian/postinst.in
blob: 143bd20411297fb753b3d9bc5b019d6c7140ad5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/sh
#set -e

version=#VERSION#
hash=292961aa8723b54f96f89f6d8abf7d8e29259d94b7de831dbffb9ae15d346434
file=Oracle_VM_VirtualBox_Extension_Pack-$version.vbox-extpack
accept_license=33d7284dc4a0ece381196fda3cfe2ed0e1e8e7ed7f27b9a9ebc4ee22e24bd23c

error ()
{
	if [ "$1" = "hash" ] ; then
		echo "Hash mismatch $file: expected $hash, removing the file."
		rm -f /usr/share/virtualbox-ext-pack/$file
	elif [ "$1" = "install" ]; then
		echo "Installation error: License key incorrect or unknown problem during installation."
	fi
	exit 1
}

# Source debconf library.
. /usr/share/debconf/confmodule

if [ "$1" = "configure" ] ; then
	rm -f /usr/share/virtualbox-ext-pack/Oracle_VM_VirtualBox_Extension_Pack-*.vbox-extpack
	cd /usr/share/virtualbox-ext-pack
	echo "virtualbox-ext-pack: downloading: https://download.virtualbox.org/virtualbox/$version/$file"
	echo "The file will be downloaded into /usr/share/virtualbox-ext-pack"
	/usr/bin/wget -q -N https://download.virtualbox.org/virtualbox/$version/$file
	echo "$hash  $file" | sha256sum -c > /dev/null 2>&1 || error hash
	vboxmanage extpack install --replace --accept-license=$accept_license $file || error install
	rm -f /usr/share/virtualbox-ext-pack/$file
fi

#DEBHELPER#