diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-08-03 20:42:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-03 20:42:28 +0200 |
commit | 6cdcbd0aae79a42e32c2f611083f287b80564930 (patch) | |
tree | a5f97451cd8dfda4b221732af80907bd76301992 /scripts | |
parent | eb0c2efe324da5ff2287000a28b7270b8782f217 (diff) | |
download | vyos-1x-6cdcbd0aae79a42e32c2f611083f287b80564930.tar.gz vyos-1x-6cdcbd0aae79a42e32c2f611083f287b80564930.zip |
ssh: config file is now volatile (moved to /run)
Diffstat (limited to 'scripts')
-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 ad56fb53b..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): |