diff options
author | Daniil Baturin <daniil@baturin.org> | 2024-07-17 11:45:35 +0100 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2024-07-17 11:45:35 +0100 |
commit | 33ae19a57dc12ffb38973de5666b428e11187602 (patch) | |
tree | 3dedbe75601c95f3fefccbd5450bdacd958fdfa6 /src/op_mode/ssh.py | |
parent | e9232c7a751ffec34f18e1734cb18ac01da35cb7 (diff) | |
download | vyos-1x-33ae19a57dc12ffb38973de5666b428e11187602.tar.gz vyos-1x-33ae19a57dc12ffb38973de5666b428e11187602.zip |
op-mode: T6586: add a distinct exception for unconfigured objects
as opposed to entire subsystems
Diffstat (limited to 'src/op_mode/ssh.py')
-rwxr-xr-x | src/op_mode/ssh.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/op_mode/ssh.py b/src/op_mode/ssh.py index 102becc55..0c51576b0 100755 --- a/src/op_mode/ssh.py +++ b/src/op_mode/ssh.py @@ -65,7 +65,7 @@ def show_fingerprints(raw: bool, ascii: bool): def show_dynamic_protection(raw: bool): config = ConfigTreeQuery() if not config.exists(['service', 'ssh', 'dynamic-protection']): - raise vyos.opmode.UnconfiguredSubsystem("SSH server dynamic-protection is not enabled.") + raise vyos.opmode.UnconfiguredObject("SSH server dynamic-protection is not enabled.") attackers = [] try: |