mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
26 lines
510 B
Bash
26 lines
510 B
Bash
#/bin/bash
|
|
|
|
# arg 1: the new package version
|
|
post_install() {
|
|
VBoxManage extpack install "/usr/share/virtualbox/extensions/VNC-${1%%-*}.vbox-extpack" >/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:
|