mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 13:52:54 +00:00
Merge pull request #10853 from cgar/spelling
just a few spelling error changes I swear only 95% of those are mine!
This commit is contained in:
@@ -33,7 +33,7 @@ class UnclosedQuoteError(SQLParseError):
|
||||
pass
|
||||
|
||||
# maps a type of identifier to the maximum number of dot levels that are
|
||||
# allowed to specifiy that identifier. For example, a database column can be
|
||||
# allowed to specify that identifier. For example, a database column can be
|
||||
# specified by up to 4 levels: database.schema.table.column
|
||||
_PG_IDENTIFIER_TO_DOT_LEVEL = dict(database=1, schema=2, table=3, column=4, role=1)
|
||||
_MYSQL_IDENTIFIER_TO_DOT_LEVEL = dict(database=1, table=2, column=3, role=1, vars=1)
|
||||
|
||||
@@ -1494,7 +1494,7 @@ class AIX(Hardware):
|
||||
|
||||
class HPUX(Hardware):
|
||||
"""
|
||||
HP-UX-specifig subclass of Hardware. Defines memory and CPU facts:
|
||||
HP-UX-specific subclass of Hardware. Defines memory and CPU facts:
|
||||
- memfree_mb
|
||||
- memtotal_mb
|
||||
- swapfree_mb
|
||||
@@ -2062,7 +2062,7 @@ class GenericBsdIfconfigNetwork(Network):
|
||||
current_if['options'] = self.get_options(words[0])
|
||||
|
||||
def parse_nd6_line(self, words, current_if, ips):
|
||||
# FreBSD has options like this...
|
||||
# FreeBSD has options like this...
|
||||
current_if['options'] = self.get_options(words[1])
|
||||
|
||||
def parse_ether_line(self, words, current_if, ips):
|
||||
@@ -2642,7 +2642,7 @@ class SunOSVirtual(Virtual):
|
||||
rc, out, err = module.run_command("/usr/sbin/virtinfo -p")
|
||||
# The output contains multiple lines with different keys like this:
|
||||
# DOMAINROLE|impl=LDoms|control=false|io=false|service=false|root=false
|
||||
# The output may also be not formated and the returncode is set to 0 regardless of the error condition:
|
||||
# The output may also be not formatted and the returncode is set to 0 regardless of the error condition:
|
||||
# virtinfo can only be run from the global zone
|
||||
try:
|
||||
for line in out.split('\n'):
|
||||
|
||||
Reference in New Issue
Block a user