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
@@ -321,7 +321,7 @@ class CallbackBase:
|
||||
self.runner_on_async_failed(host, result._result, jid)
|
||||
|
||||
def v2_runner_on_file_diff(self, result, diff):
|
||||
pass # no v1 correspondance
|
||||
pass # no v1 correspondence
|
||||
|
||||
def v2_playbook_on_start(self, playbook):
|
||||
self.playbook_on_start()
|
||||
@@ -340,10 +340,10 @@ class CallbackBase:
|
||||
self.playbook_on_task_start(task.name, is_conditional)
|
||||
|
||||
def v2_playbook_on_cleanup_task_start(self, task):
|
||||
pass # no v1 correspondance
|
||||
pass # no v1 correspondence
|
||||
|
||||
def v2_playbook_on_handler_task_start(self, task):
|
||||
pass # no v1 correspondance
|
||||
pass # no v1 correspondence
|
||||
|
||||
def v2_playbook_on_vars_prompt(self, varname, private=True, prompt=None, encrypt=None, confirm=False, salt_size=None, salt=None, default=None):
|
||||
self.playbook_on_vars_prompt(varname, private, prompt, encrypt, confirm, salt_size, salt, default)
|
||||
@@ -371,7 +371,7 @@ class CallbackBase:
|
||||
self.on_file_diff(host, result._result['diff'])
|
||||
|
||||
def v2_playbook_on_include(self, included_file):
|
||||
pass # no v1 correspondance
|
||||
pass # no v1 correspondence
|
||||
|
||||
def v2_runner_item_on_ok(self, result):
|
||||
pass
|
||||
|
||||
@@ -559,7 +559,7 @@ class FilterModule(object):
|
||||
'md5': md5s,
|
||||
# sha1 hex digeset of string
|
||||
'sha1': checksum_s,
|
||||
# checksum of string as used by ansible for checksuming files
|
||||
# checksum of string as used by ansible for checksumming files
|
||||
'checksum': checksum_s,
|
||||
# generic hashing
|
||||
'password_hash': get_encrypted_password,
|
||||
|
||||
@@ -186,7 +186,7 @@ class LookupModule(LookupBase):
|
||||
|
||||
#optional query parameters
|
||||
#we accept any parameter from the normal mongodb query.
|
||||
# the offical documentation is here
|
||||
# the official documentation is here
|
||||
# https://api.mongodb.org/python/current/api/pymongo/collection.html?highlight=find#pymongo.collection.Collection.find
|
||||
# filter: { "hostname": "batman" }
|
||||
# projection: { "pid": True , "_id" : False , "hostname" : True }
|
||||
|
||||
Reference in New Issue
Block a user