1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02: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:
Ryan Merolle 2018-10-17 10:00:56 -04:00 committed by Sumit Jaiswal
parent fc341e01fa
commit b9cf09e9d5

View file

@ -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