Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
packer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
packer
Commits
24f82757
Commit
24f82757
authored
Jul 14, 2013
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
website: document the checksum features
parent
10f2a889
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
6 deletions
+16
-6
website/source/docs/builders/virtualbox.html.markdown
website/source/docs/builders/virtualbox.html.markdown
+8
-3
website/source/docs/builders/vmware.html.markdown
website/source/docs/builders/vmware.html.markdown
+8
-3
No files found.
website/source/docs/builders/virtualbox.html.markdown
View file @
24f82757
...
...
@@ -25,7 +25,8 @@ Ubuntu to self-install. Still, the example serves to show the basic configuratio
"type": "virtualbox",
"guest_os_type": "Ubuntu_64",
"iso_url": "http://releases.ubuntu.com/12.04/ubuntu-12.04.2-server-amd64.iso",
"iso_md5": "af5f788aee1b32c4b2634734309cc9e9",
"iso_checksum": "af5f788aee1b32c4b2634734309cc9e9",
"iso_checksum_type": "md5",
"ssh_username": "packer",
"ssh_wait_timeout": "30s",
"shutdown_command": "shutdown -P now"
...
...
@@ -40,9 +41,13 @@ each category, the available options are alphabetized and described.
Required:
*
`iso_
md5`
(string) - The MD5
checksum for the OS ISO file. Because ISO
*
`iso_
checksum`
(string) - The
checksum for the OS ISO file. Because ISO
files are so large, this is required and Packer will verify it prior
to booting a virtual machine with the ISO attached.
to booting a virtual machine with the ISO attached. The type of the
checksum is specified with
`iso_checksum_type`
, documented below.
*
`iso_checksum_type`
(string) - The type of the checksum specified in
`iso_checksum`
. Valid values are "md5", "sha1", or "sha256" currently.
*
`iso_url`
(string) - A URL to the ISO containing the installation image.
This URL can be either an HTTP URL or a file URL (or path to a file).
...
...
website/source/docs/builders/vmware.html.markdown
View file @
24f82757
...
...
@@ -26,7 +26,8 @@ Ubuntu to self-install. Still, the example serves to show the basic configuratio
{
"type": "vmware",
"iso_url": "http://releases.ubuntu.com/12.04/ubuntu-12.04.2-server-amd64.iso",
"iso_md5": "af5f788aee1b32c4b2634734309cc9e9",
"iso_checksum": "af5f788aee1b32c4b2634734309cc9e9",
"iso_checksum_type": "md5",
"ssh_username": "packer",
"ssh_wait_timeout": "30s",
"shutdown_command": "shutdown -P now"
...
...
@@ -41,9 +42,13 @@ each category, the available options are alphabetized and described.
Required:
*
`iso_
md5`
(string) - The MD5
checksum for the OS ISO file. Because ISO
*
`iso_
checksum`
(string) - The
checksum for the OS ISO file. Because ISO
files are so large, this is required and Packer will verify it prior
to booting a virtual machine with the ISO attached.
to booting a virtual machine with the ISO attached. The type of the
checksum is specified with
`iso_checksum_type`
, documented below.
*
`iso_checksum_type`
(string) - The type of the checksum specified in
`iso_checksum`
. Valid values are "md5", "sha1", or "sha256" currently.
*
`iso_url`
(string) - A URL to the ISO containing the installation image.
This URL can be either an HTTP URL or a file URL (or path to a file).
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment