Skip to content

Commit

Permalink
Try specifying UsePrivilegeSeparation to No
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvipanda committed Oct 26, 2024
1 parent 323f8e8 commit 7f62d8b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion jupyter_sshd_proxy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ 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', f'LogLevel {SSHD_LOG_LEVEL}',
'-o', 'UsePrivilegeSeparation no',
]

print(shlex.join(cmd))
return {
"command": cmd,
Expand Down

0 comments on commit 7f62d8b

Please sign in to comment.