mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
Fix spelling mistakes (comments only) (#25564)
Original Author : klemens <ka7@github.com> Taking over previous PR as per https://github.com/ansible/ansible/pull/23644#issuecomment-307334525 Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
committed by
John R Barker
parent
460d932aa8
commit
b89cb95609
@@ -45,7 +45,7 @@ options:
|
||||
description:
|
||||
- List of firewall inbound rules to enforce in this group (see example). If none are supplied,
|
||||
no inbound rules will be enabled. Rules list may include its own name in `group_name`.
|
||||
This allows idempotent loopback additions (e.g. allow group to acccess itself).
|
||||
This allows idempotent loopback additions (e.g. allow group to access itself).
|
||||
Rule sources list support was added in version 2.4. This allows to define multiple sources per
|
||||
source type as well as multiple source types per rule. Prior to 2.4 an individual source is allowed.
|
||||
required: false
|
||||
|
||||
@@ -30,7 +30,7 @@ options:
|
||||
lookup:
|
||||
description:
|
||||
- "Look up route table by either tags or by route table ID. Non-unique tag lookup will fail.
|
||||
If no tags are specifed then no lookup for an existing route table is performed and a new
|
||||
If no tags are specified then no lookup for an existing route table is performed and a new
|
||||
route table will be created. To change tags of a route table or delete a route table,
|
||||
you must look up by id."
|
||||
required: false
|
||||
|
||||
@@ -253,7 +253,7 @@ EXAMPLES = '''
|
||||
bucket: mybucket
|
||||
mode: delete
|
||||
|
||||
- name: GET an object but dont download if the file checksums match. New in 2.0
|
||||
- name: GET an object but don't download if the file checksums match. New in 2.0
|
||||
s3:
|
||||
bucket: mybucket
|
||||
object: /my/desired/key.txt
|
||||
|
||||
@@ -207,7 +207,7 @@ def main():
|
||||
"the 'json' message_structure.")
|
||||
|
||||
# .publish() takes full ARN topic id, but I'm lazy and type shortnames
|
||||
# so do a lookup (topics cannot contain ':', so thats the decider)
|
||||
# so do a lookup (topics cannot contain ':', so that's the decider)
|
||||
if ':' in topic:
|
||||
arn_topic = topic
|
||||
else:
|
||||
|
||||
@@ -872,7 +872,7 @@ class AnsibleCloudStackInstance(AnsibleCloudStack):
|
||||
|
||||
def stop_instance(self):
|
||||
instance = self.get_instance()
|
||||
# in check mode intance may not be instanciated
|
||||
# in check mode instance may not be instanciated
|
||||
if instance:
|
||||
if instance['state'].lower() in ['stopping', 'stopped']:
|
||||
return instance
|
||||
@@ -893,7 +893,7 @@ class AnsibleCloudStackInstance(AnsibleCloudStack):
|
||||
|
||||
def start_instance(self):
|
||||
instance = self.get_instance()
|
||||
# in check mode intance may not be instanciated
|
||||
# in check mode instance may not be instanciated
|
||||
if instance:
|
||||
if instance['state'].lower() in ['starting', 'running']:
|
||||
return instance
|
||||
@@ -914,7 +914,7 @@ class AnsibleCloudStackInstance(AnsibleCloudStack):
|
||||
|
||||
def restart_instance(self):
|
||||
instance = self.get_instance()
|
||||
# in check mode intance may not be instanciated
|
||||
# in check mode instance may not be instanciated
|
||||
if instance:
|
||||
if instance['state'].lower() in [ 'running', 'starting' ]:
|
||||
self.result['changed'] = True
|
||||
@@ -936,7 +936,7 @@ class AnsibleCloudStackInstance(AnsibleCloudStack):
|
||||
def restore_instance(self):
|
||||
instance = self.get_instance()
|
||||
self.result['changed'] = True
|
||||
# in check mode intance may not be instanciated
|
||||
# in check mode instance may not be instanciated
|
||||
if instance:
|
||||
args = {}
|
||||
args['templateid'] = self.get_template_or_iso(key='id')
|
||||
|
||||
@@ -82,7 +82,7 @@ extends_documentation_fragment: cloudstack
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
# Add VMs to an exising load balancer
|
||||
# Add VMs to an existing load balancer
|
||||
- local_action:
|
||||
module: cs_loadbalancer_rule_member
|
||||
name: balance_http
|
||||
|
||||
@@ -38,7 +38,7 @@ options:
|
||||
required: true
|
||||
id:
|
||||
description:
|
||||
- uuid of the exising pod.
|
||||
- uuid of the existing pod.
|
||||
default: null
|
||||
required: false
|
||||
start_ip:
|
||||
|
||||
@@ -161,7 +161,7 @@ region_level_vpc:
|
||||
type: boolean
|
||||
sample: true
|
||||
restart_required:
|
||||
description: "Wheter the VPC router needs a restart or not."
|
||||
description: "Whether the VPC router needs a restart or not."
|
||||
returned: success
|
||||
type: boolean
|
||||
sample: true
|
||||
|
||||
@@ -38,7 +38,7 @@ options:
|
||||
required: true
|
||||
id:
|
||||
description:
|
||||
- uuid of the exising zone.
|
||||
- uuid of the existing zone.
|
||||
default: null
|
||||
required: false
|
||||
state:
|
||||
|
||||
@@ -56,7 +56,7 @@ options:
|
||||
- The DNS domain name of the zone (e.g., example.com).
|
||||
- One of either I(zone) or I(zone_id) must be specified as an
|
||||
option, or the module will fail.
|
||||
- If both I(zone) and I(zone_id) are specifed, I(zone_id) will be
|
||||
- If both I(zone) and I(zone_id) are specified, I(zone_id) will be
|
||||
used.
|
||||
required: false
|
||||
zone_id:
|
||||
@@ -68,7 +68,7 @@ options:
|
||||
with dashes. A zone ID will never have any dots in it.
|
||||
- I(zone_id) can be faster than I(zone) in projects with a large
|
||||
number of zones.
|
||||
- If both I(zone) and I(zone_id) are specifed, I(zone_id) will be
|
||||
- If both I(zone) and I(zone_id) are specified, I(zone_id) will be
|
||||
used.
|
||||
required: false
|
||||
type:
|
||||
|
||||
@@ -193,7 +193,7 @@ author: "Eric Johnson (@erjohnso) <erjohnso@google.com>, Tom Melendez (@supertom
|
||||
EXAMPLES = '''
|
||||
# Basic provisioning example. Create a single Debian 8 instance in the
|
||||
# us-central1-a Zone of the n1-standard-1 machine type.
|
||||
# Create multiple instances by specifying multiple names, seperated by
|
||||
# Create multiple instances by specifying multiple names, separated by
|
||||
# commas in the instance_names field
|
||||
# (e.g. my-test-instance1,my-test-instance2)
|
||||
gce:
|
||||
|
||||
@@ -81,7 +81,7 @@ options:
|
||||
version_added: "2.3"
|
||||
alert_bwquota_enabled:
|
||||
description:
|
||||
- Set status of bandwidth quota alerts as percentage of network tranfer quota.
|
||||
- Set status of bandwidth quota alerts as percentage of network transfer quota.
|
||||
default: "True"
|
||||
choices: [ "True", "False" ]
|
||||
version_added: "2.3"
|
||||
|
||||
@@ -34,7 +34,7 @@ requirements:
|
||||
options:
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
extends_documentation_fragment: openstack
|
||||
'''
|
||||
|
||||
@@ -83,7 +83,7 @@ options:
|
||||
version_added: "2.3"
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
extends_documentation_fragment: openstack
|
||||
'''
|
||||
|
||||
@@ -91,7 +91,7 @@ options:
|
||||
version_added: "2.1"
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
requirements: ["shade"]
|
||||
'''
|
||||
|
||||
@@ -52,7 +52,7 @@ options:
|
||||
default: present
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
requirements:
|
||||
- "python >= 2.6"
|
||||
|
||||
@@ -95,7 +95,7 @@ options:
|
||||
default: present
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
requirements: ["shade"]
|
||||
'''
|
||||
|
||||
@@ -39,7 +39,7 @@ options:
|
||||
required: true
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
extends_documentation_fragment: openstack
|
||||
'''
|
||||
|
||||
@@ -121,7 +121,7 @@ options:
|
||||
default: false
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
|
||||
requirements: ["shade", "jsonpatch"]
|
||||
|
||||
@@ -61,7 +61,7 @@ options:
|
||||
default: 1200
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
|
||||
requirements: ["shade"]
|
||||
|
||||
@@ -109,7 +109,7 @@ options:
|
||||
version_added: "2.1"
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
'''
|
||||
|
||||
|
||||
@@ -56,7 +56,7 @@ options:
|
||||
default: present
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
requirements: []
|
||||
'''
|
||||
|
||||
@@ -54,7 +54,7 @@ options:
|
||||
default: present
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
requirements:
|
||||
- "python >= 2.6"
|
||||
|
||||
@@ -44,7 +44,7 @@ options:
|
||||
default: None
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
'''
|
||||
|
||||
|
||||
@@ -40,7 +40,7 @@ options:
|
||||
default: present
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
requirements:
|
||||
- "python >= 2.6"
|
||||
|
||||
@@ -56,7 +56,7 @@ options:
|
||||
default: present
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
requirements:
|
||||
- "python >= 2.6"
|
||||
|
||||
@@ -85,7 +85,7 @@ options:
|
||||
version_added: "2.1"
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
requirements: ["shade"]
|
||||
'''
|
||||
|
||||
@@ -43,7 +43,7 @@ options:
|
||||
required: false
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
extends_documentation_fragment: openstack
|
||||
'''
|
||||
|
||||
@@ -85,7 +85,7 @@ options:
|
||||
default: "auto"
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
extra_specs:
|
||||
description:
|
||||
|
||||
@@ -57,7 +57,7 @@ options:
|
||||
default: present
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
'''
|
||||
|
||||
|
||||
@@ -104,7 +104,7 @@ options:
|
||||
default: present
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
'''
|
||||
|
||||
|
||||
@@ -48,7 +48,7 @@ options:
|
||||
default: null
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
extends_documentation_fragment: openstack
|
||||
'''
|
||||
|
||||
@@ -61,7 +61,7 @@ options:
|
||||
default: present
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
requirements:
|
||||
- "python >= 2.6"
|
||||
|
||||
@@ -49,7 +49,7 @@ options:
|
||||
default: None
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
'''
|
||||
|
||||
|
||||
@@ -165,7 +165,7 @@ options:
|
||||
description: Number of LVM volumes to allow.
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
|
||||
|
||||
|
||||
@@ -64,7 +64,7 @@ options:
|
||||
default: present
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
requirements:
|
||||
- "python >= 2.6"
|
||||
|
||||
@@ -76,7 +76,7 @@ options:
|
||||
default: None
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
requirements: ["shade"]
|
||||
'''
|
||||
|
||||
@@ -48,7 +48,7 @@ options:
|
||||
default: present
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
'''
|
||||
|
||||
|
||||
@@ -78,7 +78,7 @@ options:
|
||||
default: present
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
requirements: ["shade"]
|
||||
'''
|
||||
|
||||
@@ -62,7 +62,7 @@ options:
|
||||
version_added: "2.3"
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
requirements:
|
||||
- "python >= 2.6"
|
||||
|
||||
@@ -49,7 +49,7 @@ options:
|
||||
default: false
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
extends_documentation_fragment: openstack
|
||||
'''
|
||||
|
||||
@@ -50,7 +50,7 @@ options:
|
||||
required: false
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
requirements:
|
||||
- "python >= 2.6"
|
||||
|
||||
@@ -52,7 +52,7 @@ options:
|
||||
default: None
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
requirements:
|
||||
- "python >= 2.6"
|
||||
|
||||
@@ -69,7 +69,7 @@ options:
|
||||
default: 3600
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
requirements:
|
||||
- "python >= 2.6"
|
||||
|
||||
@@ -123,7 +123,7 @@ options:
|
||||
version_added: "2.1"
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
requirements:
|
||||
- "python >= 2.6"
|
||||
|
||||
@@ -43,7 +43,7 @@ options:
|
||||
required: false
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
extends_documentation_fragment: openstack
|
||||
'''
|
||||
|
||||
@@ -77,7 +77,7 @@ options:
|
||||
default: present
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
requirements:
|
||||
- "python >= 2.6"
|
||||
|
||||
@@ -49,7 +49,7 @@ options:
|
||||
default: None
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
'''
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@ options:
|
||||
default: present
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
requirements:
|
||||
- "python >= 2.6"
|
||||
|
||||
@@ -66,7 +66,7 @@ options:
|
||||
default: present
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
requirements:
|
||||
- "python >= 2.6"
|
||||
|
||||
@@ -73,7 +73,7 @@ options:
|
||||
default: present
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
requirements:
|
||||
- "python >= 2.6"
|
||||
|
||||
@@ -66,7 +66,7 @@ options:
|
||||
default: present
|
||||
availability_zone:
|
||||
description:
|
||||
- Ignored. Present for backwards compatability
|
||||
- Ignored. Present for backwards compatibility
|
||||
required: false
|
||||
requirements:
|
||||
- "python >= 2.6"
|
||||
|
||||
@@ -138,7 +138,7 @@ options:
|
||||
migration_bandwidth:
|
||||
description:
|
||||
- "The bandwidth settings define the maximum bandwidth of both outgoing and incoming migrations per host."
|
||||
- "Following bandwith options are supported:"
|
||||
- "Following bandwidth options are supported:"
|
||||
- "C(auto) - Bandwidth is copied from the I(rate limit) [Mbps] setting in the data center host network QoS."
|
||||
- "C(hypervisor_default) - Bandwidth is controlled by local VDSM setting on sending host."
|
||||
- "C(custom) - Defined by user (in Mbps)."
|
||||
|
||||
@@ -51,7 +51,7 @@ options:
|
||||
- "Default value is set by oVirt/RHV engine to I(false)."
|
||||
ranges:
|
||||
description:
|
||||
- "List of MAC ranges. The from and to should be splitted by comma."
|
||||
- "List of MAC ranges. The from and to should be split by comma."
|
||||
- "For example: 00:1a:4a:16:01:51,00:1a:4a:16:01:61"
|
||||
extends_documentation_fragment: ovirt
|
||||
'''
|
||||
|
||||
@@ -85,7 +85,7 @@ options:
|
||||
- "C(lun_id) - LUN id(s)."
|
||||
- "C(username) - A CHAP user name for logging into a target."
|
||||
- "C(password) - A CHAP password for logging into a target."
|
||||
- "C(override_luns) - If I(True) ISCSI storage domain luns will be overriden before adding."
|
||||
- "C(override_luns) - If I(True) ISCSI storage domain luns will be overridden before adding."
|
||||
- "Note that these parameters are not idempotent."
|
||||
posixfs:
|
||||
description:
|
||||
|
||||
@@ -683,7 +683,7 @@ def main():
|
||||
uuid = p['uuid']
|
||||
state = p['state']
|
||||
|
||||
# Translate the state paramter into something we can use later on.
|
||||
# Translate the state parameter into something we can use later on.
|
||||
if state in ['present', 'running']:
|
||||
vm_state = 'running'
|
||||
elif state in ['stopped', 'created']:
|
||||
|
||||
@@ -34,7 +34,7 @@ author: Peter Sprygada (@privateip)
|
||||
options:
|
||||
purge_rules:
|
||||
description:
|
||||
- If set to true, it will delete all rules in the gateway that are not given as paramter to this module.
|
||||
- If set to true, it will delete all rules in the gateway that are not given as parameter to this module.
|
||||
required: false
|
||||
default: false
|
||||
nat_rules:
|
||||
|
||||
Reference in New Issue
Block a user