From 4e6fbf8b7ec70fd3e0b5da8dedb6ea3efba3ec12 Mon Sep 17 00:00:00 2001
From: Esa Varemo <esa@kuivanto.fi>
Date: Wed, 22 Jul 2020 16:45:43 +0300
Subject: T2725: Fix config parse for users without passwords

Fix for https://phabricator.vyos.net/T2725

T2492 / a07e22377ab83104ac925e13d1824f241f0f8d4a
introduced a change which broke the initialization of
the user dict. In case the config contained an user
without an encrypted-password set, the property would
be missing and the commit would crash with
`KeyError: 'password_encrypted'`
---
 src/conf_mode/system-login.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/conf_mode/system-login.py b/src/conf_mode/system-login.py
index 93d4cc679..b1dd583b5 100755
--- a/src/conf_mode/system-login.py
+++ b/src/conf_mode/system-login.py
@@ -72,7 +72,7 @@ def get_config():
         user = {
             'name': username,
             'password_plaintext': '',
-            'password_encred': '!',
+            'password_encrypted': '!',
             'public_keys': [],
             'full_name': '',
             'home_dir': '/home/' + username,
-- 
cgit v1.2.3