(src *serpent.Bool)
| 1502 | } |
| 1503 | |
| 1504 | func sshDisableAutostartOption(src *serpent.Bool) serpent.Option { |
| 1505 | return serpent.Option{ |
| 1506 | Flag: "disable-autostart", |
| 1507 | Description: "Disable starting the workspace automatically when connecting via SSH.", |
| 1508 | Env: "CODER_SSH_DISABLE_AUTOSTART", |
| 1509 | Value: src, |
| 1510 | Default: "false", |
| 1511 | } |
| 1512 | } |
| 1513 | |
| 1514 | type stdioErrLogReader struct { |
| 1515 | l slog.Logger |
no outgoing calls
no test coverage detected