mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-26 16:36:29 +00:00
network.py filter_plugin typo fix (#47011)
changed return_orginal to return_original in /lib/ansible/plugins/filter/network.py
This commit is contained in:
committed by
Sumit Jaiswal
parent
fc341e01fa
commit
b9cf09e9d5
@@ -388,11 +388,11 @@ def hash_salt(password):
|
||||
return split_password[2]
|
||||
|
||||
|
||||
def comp_type5(unencrypted_password, encrypted_password, return_orginal=False):
|
||||
def comp_type5(unencrypted_password, encrypted_password, return_original=False):
|
||||
|
||||
salt = hash_salt(encrypted_password)
|
||||
if type5_pw(unencrypted_password, salt) == encrypted_password:
|
||||
if return_orginal is True:
|
||||
if return_original is True:
|
||||
return encrypted_password
|
||||
else:
|
||||
return True
|
||||
|
||||
Reference in New Issue
Block a user