fix(ssh): do not enable ssh automatically

This commit is contained in:
2025-04-01 17:08:52 -06:00
parent dd5b9ec213
commit cbf2fadc4d
6 changed files with 20 additions and 4 deletions

View File

@@ -108,6 +108,7 @@ class Session(BaseModel):
run_command: Optional[str] = None # Command executed on start
uid: Optional[int] = None # Store UID used
gid: Optional[int] = None # Store GID used
ssh: bool = False # Whether SSH server is enabled
class Config(BaseModel):