mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
Misc typo fixes (#49816)
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
@@ -199,7 +199,7 @@ class CLI(with_metaclass(ABCMeta, object)):
|
||||
for password_file in vault_password_files:
|
||||
id_slug = u'%s@%s' % (C.DEFAULT_VAULT_IDENTITY, password_file)
|
||||
|
||||
# note this makes --vault-id higher precendence than --vault-password-file
|
||||
# note this makes --vault-id higher precedence than --vault-password-file
|
||||
# if we want to intertwingle them in order probably need a cli callback to populate vault_ids
|
||||
# used by --vault-id and --vault-password-file
|
||||
vault_ids.append(id_slug)
|
||||
@@ -267,7 +267,7 @@ class CLI(with_metaclass(ABCMeta, object)):
|
||||
vault_id=built_vault_id)
|
||||
|
||||
# a empty or invalid password from the prompt will warn and continue to the next
|
||||
# without erroring globablly
|
||||
# without erroring globally
|
||||
try:
|
||||
prompted_vault_secret.load()
|
||||
except AnsibleError as exc:
|
||||
|
||||
@@ -97,7 +97,7 @@ class ConfigCLI(CLI):
|
||||
|
||||
# pylint: disable=unreachable
|
||||
if self.options.setting is None:
|
||||
raise AnsibleOptionsError("update option requries a setting to update")
|
||||
raise AnsibleOptionsError("update option requires a setting to update")
|
||||
|
||||
(entry, value) = self.options.setting.split('=')
|
||||
if '.' in entry:
|
||||
|
||||
Reference in New Issue
Block a user