diff options
| author | Christian Breunig <christian@breunig.cc> | 2024-05-31 10:58:44 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-31 10:58:44 +0200 | 
| commit | a9fb0ac0ca5644db7bf9d75951b3cd97c3598c60 (patch) | |
| tree | 407278eea36bb1f97affa0471a6dc01096e8a20c | |
| parent | dccbc313fe56ec774120e9d5045beba4488bcb12 (diff) | |
| parent | d5271e084cca8af54f425816916a821b0eab1a5a (diff) | |
| download | vyos-1x-a9fb0ac0ca5644db7bf9d75951b3cd97c3598c60.tar.gz vyos-1x-a9fb0ac0ca5644db7bf9d75951b3cd97c3598c60.zip | |
Merge pull request #3564 from c-po/snmpv3-op-mode
op-mode: T683: remove superfluous debug print in snmpv3 display code
| -rwxr-xr-x | src/op_mode/snmp_v3.py | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/src/op_mode/snmp_v3.py b/src/op_mode/snmp_v3.py index a1f76f0bc..abeb524dd 100755 --- a/src/op_mode/snmp_v3.py +++ b/src/op_mode/snmp_v3.py @@ -85,7 +85,7 @@ if __name__ == '__main__':          'user': [],          'view': []      } -     +      if c.exists_effective('service snmp v3 group'):          for g in c.list_effective_nodes('service snmp v3 group'):              group = { @@ -146,7 +146,6 @@ if __name__ == '__main__':              data['trap'].append(trap) -    print(data)      if args.all:           # Special case, print all templates !           tmpl = jinja2.Template(GROUP_OUTP_TMPL_SRC) | 
