blob: d0f188a769aa27d77d6fc5ac90b5e64fd6ad459d (
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
|
#!/bin/bash
# arg 1: the new package version
post_install() {
EXTPACK="/usr/share/virtualbox/extensions/VNC-${1%%-*}.vbox-extpack"
ACCEPT="$(bsdtar --to-stdout -xf "${EXTPACK}" ./ExtPack-license.txt | sha256sum | head --bytes=64)"
VBoxManage extpack install "${EXTPACK}" --accept-license="${ACCEPT}" >/dev/null
}
# arg 1: the new package version
# arg 2: the old package version
pre_upgrade() {
pre_remove "$2"
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
post_install "$1"
}
# arg 1: the old package version
pre_remove() {
VBoxManage extpack uninstall 'VNC' >/dev/null
}
# vim:set ts=2 sw=2 ft=sh et:
|