From b3b31153963cc4338e8229f9f94b339682dd73a0 Mon Sep 17 00:00:00 2001 From: Christian Breunig Date: Tue, 30 Jul 2024 15:50:45 +0200 Subject: system: op-mode: T3334: replace some print() statements with Warning() Make it more obvious for the user aber the severity of his action. --- python/vyos/utils/serial.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'python/vyos/utils/serial.py') diff --git a/python/vyos/utils/serial.py b/python/vyos/utils/serial.py index 7a662bf96..b646f881e 100644 --- a/python/vyos/utils/serial.py +++ b/python/vyos/utils/serial.py @@ -90,17 +90,18 @@ def restart_login_consoles(prompt_user=False, quiet=True, devices: List[str]=[]) if connected: if not quiet: - print('There are user sessions connected via serial console that will be terminated\n' \ - 'when serial console settings are changed.\n') # extra newline is deliberate. + Warning('There are user sessions connected via serial console that '\ + 'will be terminated when serial console settings are changed!') if not prompt_user: # This flag is used by conf_mode/system_console.py to reset things, if there's - # a problem, the user should issue a manual restart for serial-getty. - print('Please ensure all settings are committed and saved before issuing a\n' \ - '"restart serial console" command to apply new configuration.') + # a problem, the user should issue a manual restart for serial-getty. + Warning('Please ensure all settings are committed and saved before issuing a ' \ + '"restart serial console" command to apply new configuration!') if not prompt_user: return False - if not ask_yes_no('Any uncommitted changes from these sessions will be lost and in-progress actions\n' \ - 'may be left in an inconsistent state. Continue?'): + if not ask_yes_no('Any uncommitted changes from these sessions will be lost\n' \ + 'and in-progress actions may be left in an inconsistent state.\n'\ + '\nContinue?'): return False for unit in units: -- cgit v1.2.3