documentation and changelog for #3952

pull/3850/head
Matthew Hooker 10 years ago
parent b7e14c4354
commit bddb2c25f2

@ -85,6 +85,8 @@ IMPROVEMENTS:
creating new one. [GH-3918]
* builder/virtualbox-iso: Added `keep_registed` option to skip cleaning up
the image. [GH-3954]
* builder/virtualbox: Added `post_shutdown_delay` option to wait after
shutting down to prevent issues removing floppy drive. [GH-3952]
BUG FIXES:

@ -233,6 +233,11 @@ builder.
the builder. By default this is "output-BUILDNAME" where "BUILDNAME" is the
name of the build.
- `post_shutdown_delay` (string) - The amount of time to wait after shutting
down the virtual machine. If you get the error `Error removing floppy
controller`, you might need to set this to `5m` or so. By default, the
delay is `0s`, or disabled.
- `shutdown_command` (string) - The command to use to gracefully shut down the
machine once all the provisioning is done. By default this is an empty
string, which tells Packer to just forcefully shut down the machine unless a

@ -194,6 +194,11 @@ builder.
the builder. By default this is "output-BUILDNAME" where "BUILDNAME" is the
name of the build.
- `post_shutdown_delay` (string) - The amount of time to wait after shutting
down the virtual machine. If you get the error `Error removing floppy
controller`, you might need to set this to `5m` or so. By default, the
delay is `0s`, or disabled.
- `shutdown_command` (string) - The command to use to gracefully shut down the
machine once all the provisioning is done. By default this is an empty
string, which tells Packer to just forcefully shut down the machine unless a

Loading…
Cancel
Save