diff options
author | Christian Breunig <christian@breunig.cc> | 2023-09-18 22:06:08 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-09-18 22:07:31 +0200 |
commit | 38cab26959ded78a737db2272fe25106a2de47b0 (patch) | |
tree | 71e3f7d1cc436a27d4e4e9aba4e88c07ab0578a6 /src | |
parent | 53999243705b0005e6546b89317b6fc460af1000 (diff) | |
download | vyos-1x-38cab26959ded78a737db2272fe25106a2de47b0.tar.gz vyos-1x-38cab26959ded78a737db2272fe25106a2de47b0.zip |
frr: T5239: use vyos.base.warning()
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/system_frr.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/conf_mode/system_frr.py b/src/conf_mode/system_frr.py index d8224b3c3..6727b63c2 100755 --- a/src/conf_mode/system_frr.py +++ b/src/conf_mode/system_frr.py @@ -18,7 +18,7 @@ from pathlib import Path from sys import exit from vyos import ConfigError -from vyos import airbag +from vyos.base import Warning from vyos.config import Config from vyos.logger import syslog from vyos.template import render_to_string @@ -26,6 +26,8 @@ from vyos.utils.boot import boot_configuration_complete from vyos.utils.file import read_file from vyos.utils.file import write_file from vyos.utils.process import call + +from vyos import airbag airbag.enable() # path to daemons config and config status files @@ -62,10 +64,8 @@ def apply(frr_config): if boot_configuration_complete() and frr_config.get('config_file_changed'): # Since FRR restart is not safe thing, better to give # control over this to users - print(''' - You need to reboot a router (preferred) or restart FRR - to apply changes in modules settings - ''') + Warning('You need to reboot the router (preferred) or restart '\ + 'FRR to apply changes in modules settings') # restart FRR automatically # During initial boot this should be safe in most cases |