Typo fixes (#59227)

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
Abhijeet Kasurde 2019-07-19 18:18:14 +05:30 committed by GitHub
parent fd2116e26a
commit 4b152235ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 18 additions and 20 deletions

View File

@ -25,7 +25,7 @@ Features
will also append ``site_id`` and ``id`` as facts to utilize.
Confguration
Configuration
------------
Since it'd be annoying and failure prone to guess where you're configuration

View File

@ -243,7 +243,7 @@ class InventoryManager(object):
else:
# left with strings or files, let plugins figure it out
# set so new hosts can use for inventory_file/dir vasr
# set so new hosts can use for inventory_file/dir vars
self._inventory.current_source = source
# try source with each plugin

View File

@ -694,7 +694,7 @@ class AnsibleModule(object):
self._set_cwd()
# Do this at the end so that logging parameters have been set up
# This is to warn third party module authors that the functionatlity is going away.
# This is to warn third party module authors that the functionality is going away.
# We exclude uri and zfs as they have their own deprecation warnings for users and we'll
# make sure to update their code to stop using check_invalid_arguments when 2.9 rolls around
if module_set_check_invalid_arguments and self._name not in ('uri', 'zfs'):

View File

@ -40,7 +40,7 @@ EXAMPLES = '''
aws_acm_info:
domain_name: "*.example_com"
- name: obtain all certificates pending validiation
- name: obtain all certificates pending validation
aws_acm_info:
statuses:
- PENDING_VALIDATION

View File

@ -19,7 +19,7 @@ options:
description:
- The name of a Web Application Firewall
waf_regional:
description: Wether to use waf_regional module. Defaults to true
description: Whether to use waf_regional module. Defaults to true
default: false
required: no
type: bool

View File

@ -130,7 +130,7 @@ options:
default: present
virtual_drive:
description:
- Configuraiton of virtual drive options.
- Configuration of virtual drive options.
suboptions:
access_policy:
description:

View File

@ -32,13 +32,13 @@ options:
- "You cannot use spaces or any special characters other than - (hyphen), \"_\" (underscore), : (colon), and . (period)."
- You cannot change this name after the IP address pool is created.
required: yes
descrption:
description:
description:
- The user-defined description of the IP address pool.
- Enter up to 256 characters.
- "You can use any characters or spaces except the following:"
- "` (accent mark), \ (backslash), ^ (carat), \" (double quote), = (equal sign), > (greater than), < (less than), or ' (single quote)."
aliases: [ descr ]
aliases: [ descr, descrption ]
order:
description:
- The Assignment Order field.
@ -159,7 +159,7 @@ def main():
argument_spec.update(
org_dn=dict(type='str', default='org-root'),
name=dict(type='str', required=True),
descr=dict(type='str', default=''),
descr=dict(type='str', default='', aliases=['descrption', 'description']),
order=dict(type='str', default='default', choices=['default', 'sequential']),
first_addr=dict(type='str'),
last_addr=dict(type='str'),

View File

@ -32,13 +32,13 @@ options:
- "You cannot use spaces or any special characters other than - (hyphen), \"_\" (underscore), : (colon), and . (period)."
- You cannot change this name after the MAC pool is created.
required: yes
descrption:
description:
description:
- A description of the MAC pool.
- Enter up to 256 characters.
- "You can use any characters or spaces except the following:"
- "` (accent mark), \ (backslash), ^ (carat), \" (double quote), = (equal sign), > (greater than), < (less than), or ' (single quote)."
aliases: [ descr ]
aliases: [ descr, descrption ]
order:
description:
- The Assignment Order field.
@ -100,7 +100,7 @@ def main():
argument_spec.update(
org_dn=dict(type='str', default='org-root'),
name=dict(type='str', required=True),
descr=dict(type='str', default=''),
descr=dict(type='str', default='', aliases=['description', 'descrption']),
order=dict(type='str', default='default', choices=['default', 'sequential']),
first_addr=dict(type='str'),
last_addr=dict(type='str'),

View File

@ -33,7 +33,7 @@ options:
org_name:
description:
- The name of the orgranization.
- The name of the organization.
- Enter up to 16 characters.
- "You can use any characters or spaces except the following:"
- "` (accent mark), \ (backslash), ^ (carat), \" (double quote), = (equal sign), > (greater than), < (less than), or ' (single quote)."

View File

@ -85,7 +85,7 @@ options:
- The name of the server pool you want to associate with this service profile template.
server_pool_qualification:
description:
- The name of the server pool policy qualificaiton you want to use for this service profile template.
- The name of the server pool policy qualification you want to use for this service profile template.
power_state:
description:
- The power state to be applied when a service profile created from this template is associated with a server.

View File

@ -29,8 +29,8 @@ options:
admin_state:
description:
- The admin_state setting
- The enabled admin_state indicates the timezone confguration is utilized by UCS Manager.
- The disabled admin_state indicates the timezone confguration is ignored by UCS Manager.
- The enabled admin_state indicates the timezone configuration is utilized by UCS Manager.
- The disabled admin_state indicates the timezone configuration is ignored by UCS Manager.
choices: [disabled, enabled]
default: enabled

View File

@ -59,7 +59,7 @@ options:
- This is the From field in the UCS Manager Add WWN Blocks menu.
last_addr:
description:
- The last initiator in the Worlde Wide Name (WWN) block.
- The last initiator in the World Wide Name (WWN) block.
- This is the To field in the UCS Manager Add WWN Blocks menu.
- For WWxN pools, the pool size must be a multiple of ports-per-node + 1.
- For example, if there are 7 ports per node, the pool size must be a multiple of 8.

View File

@ -330,7 +330,7 @@ class ElementSWClusterSnmp(object):
result_message = "SNMP is enabled and configured"
elif update_required is True:
# If snmp is already enabled, update the configuraiton if required
# If snmp is already enabled, update the configuration if required
self.configure_snmp(networks, usm_users)
result_message = "SNMP is configured"

View File

@ -3231,10 +3231,8 @@ lib/ansible/modules/remote_management/stacki/stacki_host.py E324
lib/ansible/modules/remote_management/stacki/stacki_host.py E326
lib/ansible/modules/remote_management/stacki/stacki_host.py E337
lib/ansible/modules/remote_management/ucs/ucs_disk_group_policy.py E337
lib/ansible/modules/remote_management/ucs/ucs_ip_pool.py E323
lib/ansible/modules/remote_management/ucs/ucs_ip_pool.py E337
lib/ansible/modules/remote_management/ucs/ucs_lan_connectivity.py E337
lib/ansible/modules/remote_management/ucs/ucs_mac_pool.py E323
lib/ansible/modules/remote_management/ucs/ucs_mac_pool.py E337
lib/ansible/modules/remote_management/ucs/ucs_managed_objects.py E337
lib/ansible/modules/remote_management/ucs/ucs_ntp_server.py E337