3 Commits
v2.6 ... v2.8

Author SHA1 Message Date
09e4a5d646 doc: increament version
All checks were successful
Go Project Action / Spell-check and test go project (push) Successful in 46s
Release Go Application / Release go project (release) Successful in 46s
2025-10-31 23:27:38 +01:00
904f585c4d mod: use log file as stderr for ssh command
Some checks failed
Go Project Action / Spell-check and test go project (push) Has been cancelled
2025-10-31 23:26:58 +01:00
f78e3092fb mod: copy stderr from ssh session to locally running processes stderr
All checks were successful
Go Project Action / Spell-check and test go project (push) Successful in 51s
Release Go Application / Release go project (release) Successful in 46s
Log the `serve` version in the beginning with a closing log message.
2025-10-31 23:03:30 +01:00

View File

@@ -76,6 +76,9 @@ func setupSshServer(host string, port string, host_key_path string, users map[st
// Serve an ssh application using the provided arguments.
func Serve(host string, port string, host_key_path string, users map[string]string, name string, args []string) {
setupLogging()
log.Info("Running Serve (v2.8)...") // TODO make version string automatically the git tag (otherwise commit-hash)?
defer log.Info("Stopping Serve...")
srv, err := setupSshServer(host, port, host_key_path, users, name, args)
if err != nil {
log.Error("Could not start server", "error", err)