19 lines
485 B
Plaintext
19 lines
485 B
Plaintext
case "${ACTION}" in
|
|
post)
|
|
cat <<_EOF
|
|
=================================================================
|
|
|
|
To use VirtualBox the following modules should be loaded:
|
|
vboxdrv, vboxnetadp, vboxnetflt
|
|
|
|
You can load them at boot in /etc/conf.d/modules, like:
|
|
modules="vboxdrv vboxnetadp vboxnetflt"
|
|
|
|
You should also add your user to the 'vboxusers' group to be able
|
|
to use some VirtualBox features, e.g USB.
|
|
|
|
==================================================================
|
|
_EOF
|
|
;;
|
|
esac
|