mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
Bulk spelling improvement to modules-core (#5225)
* Correct spelling mistakes * Correct more spelling issues * merge conflict * Revert typo in parms
This commit is contained in:
@@ -229,7 +229,7 @@ def ensure_user_exists(keystone, user_name, password, email, tenant_name,
|
||||
check_mode):
|
||||
""" Check if user exists
|
||||
|
||||
Return (True, id) if a new user was created, (False, id) user alrady
|
||||
Return (True, id) if a new user was created, (False, id) user already
|
||||
exists
|
||||
"""
|
||||
|
||||
|
||||
@@ -71,7 +71,7 @@ options:
|
||||
default: present
|
||||
name:
|
||||
description:
|
||||
- Name to be assigned to the nework
|
||||
- Name to be assigned to the network
|
||||
required: true
|
||||
default: None
|
||||
provider_network_type:
|
||||
|
||||
@@ -30,9 +30,9 @@ module: quantum_router_interface
|
||||
version_added: "1.2"
|
||||
author: "Benno Joy (@bennojoy)"
|
||||
deprecated: Deprecated in 2.0. Use os_router instead
|
||||
short_description: Attach/Dettach a subnet's interface to a router
|
||||
short_description: Attach/Detach a subnet's interface to a router
|
||||
description:
|
||||
- Attach/Dettach a subnet interface to a router, to provide a gateway for the subnet.
|
||||
- Attach/Detach a subnet interface to a router, to provide a gateway for the subnet.
|
||||
options:
|
||||
login_username:
|
||||
description:
|
||||
|
||||
@@ -186,7 +186,7 @@ def main():
|
||||
# Requirements are met
|
||||
module.exit_json(changed=False, floating_ip=f_ip)
|
||||
|
||||
# Requirments are vague enough to ignore exisitng f_ip and try
|
||||
# Requirements are vague enough to ignore existing f_ip and try
|
||||
# to create a new f_ip to the server.
|
||||
|
||||
server = cloud.add_ips_to_server(
|
||||
|
||||
@@ -186,7 +186,7 @@ def _choose_id_value(module):
|
||||
def _choose_if_password_only(module, patch):
|
||||
if len(patch) is 1:
|
||||
if 'password' in patch[0]['path'] and module.params['skip_update_of_masked_password']:
|
||||
# Return false to aabort update as the password appears
|
||||
# Return false to abort update as the password appears
|
||||
# to be the only element in the patch.
|
||||
return False
|
||||
return True
|
||||
|
||||
@@ -42,7 +42,7 @@ options:
|
||||
network_name:
|
||||
description:
|
||||
- Name of the network to which the subnet should be attached
|
||||
- requried when I(state) is 'present'
|
||||
- Required when I(state) is 'present'
|
||||
required: false
|
||||
name:
|
||||
description:
|
||||
|
||||
Reference in New Issue
Block a user