Merge pull request #6465 from origoss/fix-qemu-doc

Fix qemu doc
This commit is contained in:
M. Marsh 2018-07-09 10:48:22 -07:00 committed by GitHub
commit ba2ee86a7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 5 deletions

View File

@ -36,7 +36,7 @@ to files, URLS for ISOs and checksums.
"iso_checksum": "af4a1640c0c6f348c6c41f1ea9e192a2", "iso_checksum": "af4a1640c0c6f348c6c41f1ea9e192a2",
"iso_checksum_type": "md5", "iso_checksum_type": "md5",
"output_directory": "output_centos_tdhtest", "output_directory": "output_centos_tdhtest",
"shutdown_command": "shutdown -P now", "shutdown_command": "echo 'packer' | sudo -S shutdown -P now",
"disk_size": 5000, "disk_size": 5000,
"format": "qcow2", "format": "qcow2",
"headless": false, "headless": false,
@ -326,10 +326,12 @@ default port of `5985` or whatever value you have the service set to listen on.
- `shutdown_command` (string) - The command to use to gracefully shut down the - `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 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 string, which tells Packer to just forcefully shut down the machine unless a
shutdown command takes place inside script so this may safely be omitted. If shutdown command takes place inside script so this may safely be omitted. It
one or more scripts require a reboot it is suggested to leave this blank is important to add a `shutdown_command`. By default Packer halts the virtual
since reboots may fail and specify the final shutdown command in your machine and the file system may not be sync'd. Thus, changes made in a
last script. provisioner might not be saved. If one or more scripts require a reboot it is
suggested to leave this blank since reboots may fail and specify the final
shutdown command in your last script.
- `shutdown_timeout` (string) - The amount of time to wait after executing the - `shutdown_timeout` (string) - The amount of time to wait after executing the
`shutdown_command` for the virtual machine to actually shut down. If it `shutdown_command` for the virtual machine to actually shut down. If it