desktop/virtualbox/virtualbox-ext-vnc.install

27 lines
613 B
Plaintext
Raw Normal View History

2016-07-22 06:50:07 +08:00
#/bin/bash
# arg 1: the new package version
post_install() {
2017-04-30 09:02:34 +08:00
VBoxManage extpack install "/usr/share/virtualbox/extensions/VNC-${1%%-*}.vbox-extpack" \
--accept-license="$(sha256sum /usr/share/licenses/virtualbox-ext-vnc/LICENSE | head --bytes=64)" >/dev/null
2016-07-22 06:50:07 +08:00
}
# 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: