summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2024-04-16 13:38:43 -0500
committerJohn Estabrook <jestabro@vyos.io>2024-04-16 19:24:24 -0500
commitf43edbd7cd36f52a0cd9c475b53f317882f4a6f9 (patch)
tree8d142b0e80125457a4e78c2479c66299547e500d /python
parent6825873bd1e835836259094a5a7d666be8f0be6e (diff)
downloadvyos-1x-f43edbd7cd36f52a0cd9c475b53f317882f4a6f9.tar.gz
vyos-1x-f43edbd7cd36f52a0cd9c475b53f317882f4a6f9.zip
image-tools: T6154: installer prompts to confirm a non-default passwd
Diffstat (limited to 'python')
-rw-r--r--python/vyos/utils/io.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/python/vyos/utils/io.py b/python/vyos/utils/io.py
index 7e6045291..a8c430f28 100644
--- a/python/vyos/utils/io.py
+++ b/python/vyos/utils/io.py
@@ -27,7 +27,7 @@ def print_error(str='', end='\n'):
sys.stderr.flush()
def ask_input(question, default='', numeric_only=False, valid_responses=[],
- no_echo=False):
+ no_echo=False, non_empty=False):
from getpass import getpass
question_out = question
if default:
@@ -48,6 +48,9 @@ def ask_input(question, default='', numeric_only=False, valid_responses=[],
if valid_responses and response not in valid_responses:
print("Invalid value, try again.")
continue
+ if non_empty and not response:
+ print("Non-empty value required; try again.")
+ continue
break
return response