SSH Daemon Project
public
Read
Owner: themaster
Branch: main
Commits: 2
Updated: 2026-04-19 00:20
Git CLI clone URL
git clone https://www.xt-emporium.com/git/ssh-daemon-project.git
Fullscreen desktop URL
Code
Commits
History
Branches
Bug Reports
Discussions
Compare
Settings
ssh-daemon-project
/
test
/
conftest.py
File editor
def pytest_addoption(parser): parser.addoption("--port", type=str, help="default is 2244 local, 22 remote") parser.addoption("--dbclient", type=str, default="../dbclient") parser.addoption("--dropbear", type=str, default="../dropbear") parser.addoption("--dropbearconvert", type=str, default="../dropbearconvert") parser.addoption("--dropbearkey", type=str, default="../dropbearkey") parser.addoption("--hostkey", type=str, help="required unless --remote") parser.addoption("--remote", type=str, help="remote host") parser.addoption("--user", type=str, help="optional username") parser.addoption("--ssh-keygen", type=str, default="ssh-keygen") def pytest_configure(config): opt = config.option if not opt.hostkey and not opt.remote: raise Exception("--hostkey must be given") if not opt.port: if opt.remote: opt.port = "22" else: opt.port = "2244"
Commit message
This repository is read-only for this account.
Repository snapshot
Current branch
main
Visibility
public
Your access
Read
Remote
None
File activity
View file history