diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-07-09 21:46:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-09 21:46:35 +0200 |
commit | 2cea49cef987e5c6e73744d310857a2e592e409e (patch) | |
tree | 6ca6ad71c8c90006c684ac3f280da24aed57cd34 /scripts/cli | |
parent | 1b5ff93980fed3e45897a46fe36c5785f0c668fc (diff) | |
download | vyos-1x-2cea49cef987e5c6e73744d310857a2e592e409e.tar.gz vyos-1x-2cea49cef987e5c6e73744d310857a2e592e409e.zip |
ssh: loglevel is now lowercase
Diffstat (limited to 'scripts/cli')
-rwxr-xr-x | scripts/cli/test_service_ssh.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cli/test_service_ssh.py b/scripts/cli/test_service_ssh.py index 072984ca8..ad56fb53b 100755 --- a/scripts/cli/test_service_ssh.py +++ b/scripts/cli/test_service_ssh.py @@ -51,7 +51,7 @@ class TestServiceSSH(unittest.TestCase): self.session.set(base_path + ['port', '1234']) self.session.set(base_path + ['disable-host-validation']) self.session.set(base_path + ['disable-password-authentication']) - self.session.set(base_path + ['loglevel', 'VERBOSE']) + self.session.set(base_path + ['loglevel', 'verbose']) self.session.set(base_path + ['client-keepalive-interval', '100']) self.session.set(base_path + ['listen-address', '127.0.0.1']) |