summarylogtreecommitdiffstats
path: root/virtualbox-ext-vnc.install
diff options
context:
space:
mode:
Diffstat (limited to 'virtualbox-ext-vnc.install')
-rw-r--r--virtualbox-ext-vnc.install27
1 files changed, 27 insertions, 0 deletions
diff --git a/virtualbox-ext-vnc.install b/virtualbox-ext-vnc.install
new file mode 100644
index 000000000000..d0f188a769aa
--- /dev/null
+++ b/virtualbox-ext-vnc.install
@@ -0,0 +1,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: