ci: implement "console" stream for OS images (#969)

* image: add AUTOLOGIN environment variable to conditionally enable serial console login
* ci: implement "console" stream for OS images
* debugd: remove serial console login access code
This commit is contained in:
Malte Poll 2023-01-16 12:20:01 +01:00 committed by GitHub
parent 90b88e1cf9
commit 938f114086
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 12 additions and 54 deletions

View file

@ -51,10 +51,6 @@ func main() {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
if err := deploy.EnableAutoLogin(ctx, fs, serviceManager); err != nil {
log.Errorf("root login: %w")
}
wg := &sync.WaitGroup{}
csp := os.Getenv("CONSTEL_CSP")