summaryrefslogtreecommitdiff
path: root/scripts/cli/test_service_ssh.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/cli/test_service_ssh.py')
-rwxr-xr-xscripts/cli/test_service_ssh.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/cli/test_service_ssh.py b/scripts/cli/test_service_ssh.py
index 072984ca8..3ee498f3d 100755
--- a/scripts/cli/test_service_ssh.py
+++ b/scripts/cli/test_service_ssh.py
@@ -22,7 +22,7 @@ from psutil import process_iter
from vyos.configsession import ConfigSession, ConfigSessionError
from vyos.util import read_file
-SSHD_CONF = '/etc/ssh/sshd_config'
+SSHD_CONF = '/run/ssh/sshd_config'
base_path = ['service', 'ssh']
def get_config_value(key):
@@ -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'])