mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02: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
@@ -75,7 +75,7 @@ EXAMPLES = '''
|
||||
password: secret
|
||||
system: ibox001
|
||||
|
||||
- name: Add multiple clients with RO access. Squash root priviledges
|
||||
- name: Add multiple clients with RO access. Squash root privileges
|
||||
infini_export_client:
|
||||
client: "{{ item }}"
|
||||
access_mode: RO
|
||||
|
||||
@@ -54,7 +54,7 @@ options:
|
||||
required: True
|
||||
name:
|
||||
description:
|
||||
- If the host doesnt yet exist, the label to assign at creation time.
|
||||
- If the host doesn't yet exist, the label to assign at creation time.
|
||||
- If the hosts already exists, this is what is used to identify the host to apply any desired changes
|
||||
required: True
|
||||
host_type_index:
|
||||
@@ -204,7 +204,7 @@ class Host(object):
|
||||
if len(self.available_ports) > 0 and len(self.ports) <= len(self.available_ports):
|
||||
for port in self.ports:
|
||||
for free_port in self.available_ports:
|
||||
# Desired Type matches but also make sure we havent already used the ID
|
||||
# Desired Type matches but also make sure we haven't already used the ID
|
||||
if not free_port['id'] in used_ids:
|
||||
# update the port arg to have an id attribute
|
||||
used_ids.append(free_port['id'])
|
||||
@@ -318,7 +318,7 @@ class Host(object):
|
||||
self.post_body['portsToUpdate'].update(dict(
|
||||
portRef=self.other_host['hostPortRef'],
|
||||
hostRef=self.host_obj['id'],
|
||||
# Doesnt yet address port identifier or chap secret
|
||||
# Doesn't yet address port identifier or chap secret
|
||||
))
|
||||
|
||||
if apply:
|
||||
|
||||
@@ -72,7 +72,7 @@ options:
|
||||
description:
|
||||
- The ID of the volume to manage or update.
|
||||
- In order to create multiple volumes with the same name, but different volume_ids, please declare the I(volume_id)
|
||||
parameter with an arbitary value. However, the specified volume_id will not be assigned to the newly created
|
||||
parameter with an arbitrary value. However, the specified volume_id will not be assigned to the newly created
|
||||
volume (since it's an auto-generated property).
|
||||
required: false
|
||||
default: None
|
||||
|
||||
Reference in New Issue
Block a user