From 33ae19a57dc12ffb38973de5666b428e11187602 Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Wed, 17 Jul 2024 11:45:35 +0100 Subject: op-mode: T6586: add a distinct exception for unconfigured objects as opposed to entire subsystems --- src/op_mode/ssh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/op_mode/ssh.py') 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: -- cgit v1.2.3