mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-12 21:40:22 +00:00
10 lines
160 B
Plaintext
Executable File
10 lines
160 B
Plaintext
Executable File
# package install script
|
|
|
|
action=$1
|
|
newversion=$2
|
|
oldversion=$3
|
|
|
|
case $action in
|
|
post-install) getent group vboxusers >/dev/null || groupadd vboxusers ;;
|
|
esac
|