diff options
author | André Fabian Silva Delgado <andre@localhost.localdomain> | 2012-09-25 02:59:02 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <andre@localhost.localdomain> | 2012-09-25 02:59:02 -0300 |
commit | 6f2b4faa916385ef6e80757f127dde61103e86c2 (patch) | |
tree | 6640a311da66ecdf9b869beb6f693bc7422b836b /libre/virtualbox-libre/virtualbox-libre-guest-utils.install | |
parent | 92f96e03374d0a3b3fc337216a93d0e05c5fe28e (diff) | |
download | abslibre-6f2b4faa916385ef6e80757f127dde61103e86c2.tar.gz abslibre-6f2b4faa916385ef6e80757f127dde61103e86c2.tar.bz2 abslibre-6f2b4faa916385ef6e80757f127dde61103e86c2.zip |
virtualbox-libre-4.2.0-3: updating revision due some changes on PKGBUILD
Diffstat (limited to 'libre/virtualbox-libre/virtualbox-libre-guest-utils.install')
-rwxr-xr-x | libre/virtualbox-libre/virtualbox-libre-guest-utils.install | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/libre/virtualbox-libre/virtualbox-libre-guest-utils.install b/libre/virtualbox-libre/virtualbox-libre-guest-utils.install new file mode 100755 index 000000000..38bbe807d --- /dev/null +++ b/libre/virtualbox-libre/virtualbox-libre-guest-utils.install @@ -0,0 +1,31 @@ +#!/bin/sh + +# arg 1: the new package version +post_install() { + getent group vboxsf > /dev/null || groupadd -g 109 vboxsf + true +} + +# arg 1: the new package version +# arg 2: the old package version +post_upgrade() { + post_install "$1" + # rename /etc/rc.d/vboxservice + if [ "`vercmp $2 4.1.18-3`" -lt 0 ]; then + cat << EOF +==> rc.d vbox-service script was renamed to vboxservice. +EOF + fi + # fix gid of vboxsf + if [ "`vercmp $2 4.1.18-4`" -lt 0 ]; then + groupmod -g 109 vboxsf + fi + true +} + +# arg 1: the old package version +post_remove() { + groupdel vboxsf >/dev/null 2>&1 || true +} + +# vim:set ts=2 sw=2 ft=sh et: |