diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2012-07-26 05:55:03 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2012-07-26 05:55:03 -0300 |
commit | ff0071716aa6bf9100e49508b815da77cb735942 (patch) | |
tree | ae5d93c6e188ac2555b0341812d2ad9f9cb1c25b /libre/virtualbox-libre/virtualbox-libre-parabola-additions.install | |
parent | 14ba2fbc3763f75ff0b3cdede444930ee949d097 (diff) | |
download | abslibre-ff0071716aa6bf9100e49508b815da77cb735942.tar.gz abslibre-ff0071716aa6bf9100e49508b815da77cb735942.tar.bz2 abslibre-ff0071716aa6bf9100e49508b815da77cb735942.zip |
virtualbox-libre: adding free patches and free distros icons
Diffstat (limited to 'libre/virtualbox-libre/virtualbox-libre-parabola-additions.install')
-rw-r--r-- | libre/virtualbox-libre/virtualbox-libre-parabola-additions.install | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/libre/virtualbox-libre/virtualbox-libre-parabola-additions.install b/libre/virtualbox-libre/virtualbox-libre-parabola-additions.install new file mode 100644 index 000000000..38bbe807d --- /dev/null +++ b/libre/virtualbox-libre/virtualbox-libre-parabola-additions.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: |