diff options
author | Christian Breunig <christian@breunig.cc> | 2024-07-30 15:50:45 +0200 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-07-30 13:53:08 +0000 |
commit | 1f7a775f0b674f158f28f042aa7c940c6deea79e (patch) | |
tree | bcb02ab12510a067680b0bf30d71590061698c1d | |
parent | db6f10654df7dd19d70f9cb6f1c9e1fcd4dc7360 (diff) | |
download | vyos-1x-1f7a775f0b674f158f28f042aa7c940c6deea79e.tar.gz vyos-1x-1f7a775f0b674f158f28f042aa7c940c6deea79e.zip |
system: op-mode: T3334: replace some print() statements with Warning()mergify/bp/sagitta/pr-3698
Make it more obvious for the user aber the severity of his action.
(cherry picked from commit b3b31153963cc4338e8229f9f94b339682dd73a0)
-rw-r--r-- | python/vyos/utils/serial.py | 15 |
1 files changed, 8 insertions, 7 deletions
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: |