Fix common misspellings
Wikipedia's list of common misspellings [1] has a machine-readable version. This patch fixes those misspellings mentioned in the list which don't have multiple right variants (as e.g. "accension", which can be both "accession" and "ascension"), such misspellings are left untouched. The list of changes was manually re-checked for false positives. [1] https://en.wikipedia.org/wiki/Wikipedia:Lists_of_common_misspellings/For_machines Change-Id: Ic53e9a848280d50e69306abc98194890ac298ff2 Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
This commit is contained in:
parent
7571df1366
commit
484b4314c6
@ -888,7 +888,7 @@ The boot modes can be configured in Ironic in the following way:
|
||||
the ``boot_mode`` set appropriately in ``properties/capabilities``. It will
|
||||
filter out rest of the nodes.
|
||||
|
||||
The above facility for matching in Nova can be used in heterogenous
|
||||
The above facility for matching in Nova can be used in heterogeneous
|
||||
environments where there is a mix of ``uefi`` and ``bios`` machines, and
|
||||
operator wants to provide a choice to the user regarding boot modes. If
|
||||
the flavor doesn't contain ``boot_mode`` and ``boot_mode`` is configured for
|
||||
@ -1097,7 +1097,7 @@ There are however some limitations for different drivers:
|
||||
* If you're using one of the drivers that use agent deploy method (namely,
|
||||
``agent_ilo``, ``agent_ipmitool``, ``agent_pyghmi``, ``agent_ssh`` or
|
||||
``agent_vbox``) you have to know MD5 checksum for your instance image. To
|
||||
compute it, you can use the follwoing command::
|
||||
compute it, you can use the following command::
|
||||
|
||||
md5sum image.qcow2
|
||||
ed82def8730f394fb85aef8a208635f6 image.qcow2
|
||||
|
@ -74,7 +74,7 @@ The Ironic service is composed of the following components:
|
||||
exposed via the API service. The Conductor and API services communicate
|
||||
via RPC.
|
||||
|
||||
#. various Drivers that support heterogenous hardware
|
||||
#. various Drivers that support heterogeneous hardware
|
||||
|
||||
#. a Message Queue
|
||||
|
||||
|
@ -7,7 +7,7 @@ iLO drivers
|
||||
Overview
|
||||
========
|
||||
iLO drivers enable to take advantage of features of iLO management engine in
|
||||
HP Proliant servers. iLO drivers are targetted for HP Proliant Gen 8 systems
|
||||
HP Proliant servers. iLO drivers are targeted for HP Proliant Gen 8 systems
|
||||
and above which have iLO 4 management engine. [1]_
|
||||
|
||||
For more detailed and up-to-date information (like tested platforms, known
|
||||
@ -554,7 +554,7 @@ The boot modes can be configured in Ironic in the following way:
|
||||
the ``boot_mode`` set appropriately in ``properties/capabilities``. It will
|
||||
filter out rest of the nodes.
|
||||
|
||||
The above facility for matching in Nova can be used in heterogenous
|
||||
The above facility for matching in Nova can be used in heterogeneous
|
||||
environments where there is a mix of ``uefi`` and ``bios`` machines, and
|
||||
operator wants to provide a choice to the user regarding boot modes. If the
|
||||
flavor doesn't contain ``boot_mode`` then Nova scheduler will not consider
|
||||
|
@ -519,7 +519,7 @@
|
||||
# significantly longer. While this provides a better and more
|
||||
# secure user experience, it does impact the service behavior,
|
||||
# and as such IS DISABLED BY DEFAULT until consuming services
|
||||
# (eg, Nova) have been updated to accomodate the additional
|
||||
# (eg, Nova) have been updated to accommodate the additional
|
||||
# time for deletion. (boolean value)
|
||||
#clean_nodes=false
|
||||
|
||||
|
@ -186,7 +186,7 @@ conductor_opts = [
|
||||
'secure user experience, it does impact the service '
|
||||
'behavior, and as such IS DISABLED BY DEFAULT until '
|
||||
'consuming services (eg, Nova) have been updated to '
|
||||
'accomodate the additional time for deletion.'),
|
||||
'accommodate the additional time for deletion.'),
|
||||
]
|
||||
CONF = cfg.CONF
|
||||
CONF.register_opts(conductor_opts, 'conductor')
|
||||
@ -717,7 +717,7 @@ class ConductorManager(periodic_task.PeriodicTasks):
|
||||
# Infer the image type to make sure the deploy driver
|
||||
# validates only the necessary variables for different
|
||||
# image types.
|
||||
# NOTE(sirushtim): The iwdi variable can be None. It's upto
|
||||
# NOTE(sirushtim): The iwdi variable can be None. It's up to
|
||||
# the deploy driver to validate this.
|
||||
iwdi = images.is_whole_disk_image(context, node.instance_info)
|
||||
driver_internal_info['is_whole_disk_image'] = iwdi
|
||||
|
@ -767,7 +767,7 @@ class VendorPassthru(agent_base_vendor.BaseAgentVendor):
|
||||
'root uuid', uuid_dict.get('disk identifier'))
|
||||
|
||||
try:
|
||||
# For iscsi_ilo driver, we boot from disk everytime if the image
|
||||
# For iscsi_ilo driver, we boot from disk every time if the image
|
||||
# deployed is a whole disk image.
|
||||
if iscsi_deploy.get_boot_option(node) == "local" or iwdi:
|
||||
manager_utils.node_set_boot_device(task, boot_devices.DISK,
|
||||
|
@ -118,7 +118,7 @@ class SNMPClient(object):
|
||||
"""
|
||||
if self.version == SNMP_V3:
|
||||
# Handling auth/encryption credentials is not (yet) supported.
|
||||
# This version supports a security name analagous to community.
|
||||
# This version supports a security name analogous to community.
|
||||
return cmdgen.UsmUserData(self.security)
|
||||
else:
|
||||
mp_model = 1 if self.version == SNMP_V2C else 0
|
||||
|
Loading…
x
Reference in New Issue
Block a user