2015-04-11 16:15:49 +02:00
|
|
|
VirtualBox
|
|
|
|
----------
|
|
|
|
|
|
|
|
The `VirtualBox <https://www.virtualbox.org/>`__ provider can bootstrap
|
|
|
|
to both .vdi and .vmdk images (raw images are also supported but do not
|
|
|
|
run in VirtualBox). It's advisable to always use vmdk images for
|
|
|
|
interoperability (e.g.
|
|
|
|
`OVF <http://en.wikipedia.org/wiki/Open_Virtualization_Format>`__ files
|
|
|
|
*should* support vdi files, but since they have no identifier URL not
|
2015-11-09 21:53:48 +00:00
|
|
|
even VirtualBox itself can import them).
|
|
|
|
|
|
|
|
VirtualBox Guest Additions can be installed automatically if the ISO is
|
2015-12-13 15:24:27 +01:00
|
|
|
provided in the manifest.
|
2015-11-09 21:53:48 +00:00
|
|
|
VirtualBox Additions iso can be installed from main Debian repo by running:
|
|
|
|
`apt install virtualbox-guest-additions-iso`
|
2015-12-13 15:24:27 +01:00
|
|
|
|
|
|
|
|
|
|
|
Manifest settings
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
Provider
|
|
|
|
~~~~~~~~
|
|
|
|
|
|
|
|
- ``guest_additions``: Specifies the path to the VirtualBox Guest Additions ISO,
|
|
|
|
which, when specified, will be mounted and used to install the
|
|
|
|
VirtualBox Guest Additions.
|
|
|
|
``optional``
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
.. code:: yaml
|
|
|
|
|
|
|
|
---
|
|
|
|
provider:
|
|
|
|
name: virtualbox
|
|
|
|
guest_additions: /usr/share/virtualbox/VBoxGuestAdditions.iso
|