mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-02 14:40:19 -07:00
fix vyos_user configuration (#26166)
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
parent
9474f20f2d
commit
34eca3816d
2 changed files with 6 additions and 6 deletions
|
@ -122,7 +122,7 @@ commands:
|
|||
type: list
|
||||
sample:
|
||||
- set system login user test level operator
|
||||
- set system login user authentication encrypted-password password
|
||||
- set system login user authentication plaintext-password password
|
||||
"""
|
||||
|
||||
import re
|
||||
|
@ -163,7 +163,7 @@ def spec_to_commands(updates, module):
|
|||
|
||||
if needs_update(want, have, 'password'):
|
||||
if update_password == 'always' or not have:
|
||||
add(commands, want, 'authentication encrypted-password %s' % want['password'])
|
||||
add(commands, want, 'authentication plaintext-password %s' % want['password'])
|
||||
|
||||
return commands
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue