diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-04-16 19:22:03 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-04-16 19:22:03 +0200 |
commit | e91af67ff82a228f3571a60a9037f9ef96c84537 (patch) | |
tree | 533512a57561b11281210bdf44a17f493454a088 /src/conf_mode/snmp.py | |
parent | 83a2fc901136b9da68f50a5a2c9ae1f45dbf5e97 (diff) | |
download | vyos-1x-e91af67ff82a228f3571a60a9037f9ef96c84537.tar.gz vyos-1x-e91af67ff82a228f3571a60a9037f9ef96c84537.zip |
vyos.base: use Warning() helper where applicable
Diffstat (limited to 'src/conf_mode/snmp.py')
-rwxr-xr-x | src/conf_mode/snmp.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/conf_mode/snmp.py b/src/conf_mode/snmp.py index 4fc6a4517..e35bb8a0c 100755 --- a/src/conf_mode/snmp.py +++ b/src/conf_mode/snmp.py @@ -18,6 +18,7 @@ import os from sys import exit +from vyos.base import Warning from vyos.config import Config from vyos.configdict import dict_merge from vyos.configverify import verify_vrf @@ -149,7 +150,7 @@ def verify(snmp): tmp = extension_opt['script'] if not os.path.isfile(tmp): - print(f'WARNING: script "{tmp}" does not exist!') + Warning(f'script "{tmp}" does not exist!') else: chmod_755(extension_opt['script']) @@ -158,7 +159,7 @@ def verify(snmp): # We only wan't to configure addresses that exist on the system. # Hint the user if they don't exist if not is_addr_assigned(address): - print(f'WARNING: SNMP listen address "{address}" not configured!') + Warning(f'SNMP listen address "{address}" not configured!') if 'trap_target' in snmp: for trap, trap_config in snmp['trap_target'].items(): |