mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-07-25 00:05:17 -04:00
debugd: Allow root login on serial console when using debug image (#407)
This commit is contained in:
parent
a796c7ee69
commit
f5270c6c01
2 changed files with 22 additions and 0 deletions
|
@ -43,6 +43,10 @@ func main() {
|
|||
ctx, cancel := context.WithCancel(context.Background())
|
||||
defer cancel()
|
||||
|
||||
if err := deploy.DeleteUserPassword(ctx, "root"); err != nil {
|
||||
log.Errorf("root login: %w")
|
||||
}
|
||||
|
||||
download := deploy.New(log.Named("download"), &net.Dialer{}, serviceManager, streamer)
|
||||
var fetcher metadata.Fetcher
|
||||
csp := os.Getenv("CONSTEL_CSP")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue