Merge pull request #5425 from mayn/fix-docs-minor-spelling
docs fix minor spelling typos throughout docs
This commit is contained in:
commit
188f171cf0
|
@ -219,7 +219,7 @@ each category, the available configuration keys are alphabetized.
|
|||
- `mount_options` (array of strings) - Options to supply the `mount` command
|
||||
when mounting devices. Each option will be prefixed with `-o` and supplied
|
||||
to the `mount` command ran by Packer. Because this command is ran in a
|
||||
shell, user discrestion is advised. See [this manual page for the mount
|
||||
shell, user discretion is advised. See [this manual page for the mount
|
||||
command](http://linuxcommand.org/man_pages/mount8.html) for valid file
|
||||
system specific options
|
||||
|
||||
|
|
|
@ -314,7 +314,7 @@ The Azure builder creates the following random values at runtime.
|
|||
- KeyVault Name: a random 15-character name prefixed with pkrkv.
|
||||
- OS Disk Name: a random 15-character name prefixed with pkros.
|
||||
- Resource Group Name: a random 33-character name prefixed with packer-Resource-Group-.
|
||||
- SSH Key Pair: a 2,048-bit asymmetric key pair; can be overriden by the user.
|
||||
- SSH Key Pair: a 2,048-bit asymmetric key pair; can be overridden by the user.
|
||||
|
||||
The default alphabet used for random values is **0123456789bcdfghjklmnpqrstvwxyz**. The alphabet was reduced (no
|
||||
vowels) to prevent running afoul of Azure decency controls.
|
||||
|
|
|
@ -52,11 +52,11 @@ builder.
|
|||
for the instance.
|
||||
|
||||
- `source_iso` (string) - The name or ID of an ISO that will be mounted before
|
||||
booting the instance. This option is mutual exclusive with `source_template`.
|
||||
booting the instance. This option is mutually exclusive with `source_template`.
|
||||
When using `source_iso`, both `disk_offering` and `hypervisor` are required.
|
||||
|
||||
- `source_template` (string) - The name or ID of the template used as base
|
||||
template for the instance. This option is mutual explusive with `source_iso`.
|
||||
template for the instance. This option is mutually exclusive with `source_iso`.
|
||||
|
||||
- `template_os` (string) - The name or ID of the template OS for the new
|
||||
template that will be created.
|
||||
|
|
|
@ -39,7 +39,7 @@ builder.
|
|||
|
||||
- `location` (string) - Defaults to "us/las".
|
||||
|
||||
- `ram` (integer) - Amount of RAM to use for this image. Defalts to "2048".
|
||||
- `ram` (integer) - Amount of RAM to use for this image. Defaults to "2048".
|
||||
|
||||
- `retries` (string) - Number of retries Packer will make status requests while waiting for the build to complete. Default value 120 seconds.
|
||||
|
||||
|
|
|
@ -195,7 +195,7 @@ builder.
|
|||
|
||||
- `sata_port_count` (integer) - The number of ports available on any SATA
|
||||
controller created, defaults to 1. VirtualBox supports up to 30 ports on a
|
||||
maxiumum of 1 SATA controller. Increasing this value can be useful if you
|
||||
maximum of 1 SATA controller. Increasing this value can be useful if you
|
||||
want to attach additional drives.
|
||||
|
||||
- `hard_drive_nonrotational` (boolean) - Forces some guests (i.e. Windows 7+)
|
||||
|
|
|
@ -49,7 +49,7 @@ Optional:
|
|||
|
||||
- `ami_groups` (array of strings) - A list of groups that have access to
|
||||
launch the imported AMI. By default no groups have permission to launch the
|
||||
AMI. `all` will make the AMI publically accessible. AWS currently doesn't
|
||||
AMI. `all` will make the AMI publicly accessible. AWS currently doesn't
|
||||
accept any value other than "all".
|
||||
|
||||
- `ami_name` (string) - The name of the ami within the console. If not
|
||||
|
|
|
@ -76,7 +76,7 @@ Optional:
|
|||
remote machine.
|
||||
|
||||
When using an inventory file, it's also required to `--limit` the hosts to the
|
||||
specified host you're buiding. The `--limit` argument can be provided in the
|
||||
specified host you're building. The `--limit` argument can be provided in the
|
||||
`extra_arguments` option.
|
||||
|
||||
An example inventory file may look like:
|
||||
|
|
|
@ -187,7 +187,7 @@ readability) to execute Chef:
|
|||
|
||||
When guest\_os\_type is set to "windows", Packer uses the following command to
|
||||
execute Chef. The full path to Chef is required because the PATH environment
|
||||
variable changes don't immediately propogate to running processes.
|
||||
variable changes don't immediately propagate to running processes.
|
||||
|
||||
``` liquid
|
||||
c:/opscode/chef/bin/chef-client.bat \
|
||||
|
@ -238,7 +238,7 @@ readability) to execute Chef:
|
|||
|
||||
When guest\_os\_type is set to "windows", Packer uses the following command to
|
||||
execute Chef. The full path to Chef is required because the PATH environment
|
||||
variable changes don't immediately propogate to running processes.
|
||||
variable changes don't immediately propagate to running processes.
|
||||
|
||||
``` liquid
|
||||
c:/opscode/chef/bin/knife.bat \
|
||||
|
|
|
@ -153,7 +153,7 @@ readability) to execute Chef:
|
|||
|
||||
When guest\_os\_type is set to "windows", Packer uses the following command to
|
||||
execute Chef. The full path to Chef is required because the PATH environment
|
||||
variable changes don't immediately propogate to running processes.
|
||||
variable changes don't immediately propagate to running processes.
|
||||
|
||||
``` liquid
|
||||
c:/opscode/chef/bin/chef-solo.bat \
|
||||
|
|
|
@ -93,7 +93,7 @@ The SSH communicator has the following options:
|
|||
- `ssh_port` (integer) - The port to connect to SSH. This defaults to 22.
|
||||
|
||||
- `ssh_private_key_file` (string) - Path to a PEM encoded private key
|
||||
file to use to authentiate with SSH.
|
||||
file to use to authenticate with SSH.
|
||||
|
||||
- `ssh_pty` (boolean) - If true, a PTY will be requested for the SSH
|
||||
connection. This defaults to false.
|
||||
|
|
Loading…
Reference in New Issue