Skip to content

Commit

Permalink
Don't use UsePrivilegeSeparation no
Browse files Browse the repository at this point in the history
Don't think this is necessary
  • Loading branch information
yuvipanda committed Oct 26, 2024
1 parent 8d6cf3d commit 3a1b03c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions jupyter_sshd_proxy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 3a1b03c

Please sign in to comment.