bump initrdv2

This commit is contained in:
Mikaël Cluseau 2023-02-02 00:32:38 +01:00
parent 52ffbe9727
commit 2a9295e8e8
1 changed files with 4 additions and 1 deletions

View File

@ -3,6 +3,7 @@ package main
import (
"archive/tar"
"encoding/json"
"flag"
"fmt"
"io"
"log"
@ -14,6 +15,8 @@ import (
"novit.tech/direktil/pkg/cpiocat"
)
var initrdV2 = flag.String("initrd-v2", "2.1.0", "initrd V2 version (temporary flag)") // FIXME
func renderBootstrapConfig(w http.ResponseWriter, r *http.Request, ctx *renderContext, asJson bool) (err error) {
log.Printf("sending bootstrap config for %q", ctx.Host.Name)
@ -40,7 +43,7 @@ func buildInitrdV2(out io.Writer, ctx *renderContext) (err error) {
cat := cpiocat.New(out)
// initrd
initrdPath, err := ctx.distFetch("initrd", "2.0.0" /* FIXME */)
initrdPath, err := ctx.distFetch("initrd", *initrdV2)
if err != nil {
return
}