From 7b62140d2a3eaf2e1ce69d81cd8e3ae8ca3c5147 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Cluseau?= Date: Mon, 8 Jan 2024 09:47:40 +0100 Subject: [PATCH] bootstrap: update-ca-certificates --- bootstrap.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bootstrap.go b/bootstrap.go index b4ad15e..069a314 100644 --- a/bootstrap.go +++ b/bootstrap.go @@ -115,6 +115,9 @@ func bootstrap(cfg *config.Config) { log.Print("setting root's authorized keys") setAuthorizedKeys(ak) } + + // update-ca-certificates + run("chroot", "/system", "update-ca-certificates") } func setUserPass(user, passwordHash string) {