From 3a1b03c20cbb05a99a42d23fe94e5cf404f6fb41 Mon Sep 17 00:00:00 2001 From: YuviPanda Date: Fri, 25 Oct 2024 19:47:57 -0700 Subject: [PATCH] Don't use UsePrivilegeSeparation no Don't think this is necessary --- jupyter_sshd_proxy/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/jupyter_sshd_proxy/__init__.py b/jupyter_sshd_proxy/__init__.py index 724f70a..68ade73 100644 --- a/jupyter_sshd_proxy/__init__.py +++ b/jupyter_sshd_proxy/__init__.py @@ -25,8 +25,7 @@ def setup_sshd() -> Dict[str, Any]: # Last login info is from /var/log/lastlog, which is transient in containerized systems '-o', 'PrintLastLog no', '-o', f'AuthorizedKeysFile {AUTHORIZED_KEYS_PATH}', - '-o', f'LogLevel {SSHD_LOG_LEVEL}', - '-o', 'UsePrivilegeSeparation no', + '-o', f'LogLevel {SSHD_LOG_LEVEL}' ] print(shlex.join(cmd))