fix vyos_user configuration (#26166)

Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
Trishna Guha 2017-06-28 12:13:27 +05:30 committed by GitHub
parent 9474f20f2d
commit 34eca3816d
2 changed files with 6 additions and 6 deletions

View file

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