Update junos_user.py (#60459)
This commit is contained in:
parent
e33700c5e2
commit
c226c1015e
1 changed files with 2 additions and 4 deletions
|
@ -224,8 +224,7 @@ def map_obj_to_ele(module, want):
|
|||
SubElement(user, 'full-name').text = item['full_name']
|
||||
|
||||
if item.get('sshkey'):
|
||||
if 'auth' not in locals():
|
||||
auth = SubElement(user, 'authentication')
|
||||
auth = SubElement(user, 'authentication')
|
||||
if 'ssh-rsa' in item['sshkey']:
|
||||
ssh_rsa = SubElement(auth, 'ssh-rsa')
|
||||
elif 'ssh-dss' in item['sshkey']:
|
||||
|
@ -237,8 +236,7 @@ def map_obj_to_ele(module, want):
|
|||
key = SubElement(ssh_rsa, 'name').text = item['sshkey']
|
||||
|
||||
if item.get('encrypted_password'):
|
||||
if 'auth' not in locals():
|
||||
auth = SubElement(user, 'authentication')
|
||||
auth = SubElement(user, 'authentication')
|
||||
SubElement(auth, 'encrypted-password').text = item['encrypted_password']
|
||||
|
||||
return element
|
||||
|
|
Loading…
Reference in a new issue