From 45e72e0b93c6a6ae66b83b4ea182a9d4d40b130b Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Wed, 13 Sep 2023 12:21:57 -0400 Subject: [PATCH] platform/qemu: fix usage of removed Mount9p PR #3593 was written and opened before #3428 but merged after it. CI had passed but was not rerun, so this went in. This would be fixed by using a merge bot on this repo that reruns CI before merge (See also https://bors.tech/essay/2017/02/02/pitch/.) Fixes: d812406d5 ("kola: Add `--qemu-bind-ro`") --- mantle/platform/machine/qemu/cluster.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mantle/platform/machine/qemu/cluster.go b/mantle/platform/machine/qemu/cluster.go index 8f23ba54b3..6d2a82204b 100644 --- a/mantle/platform/machine/qemu/cluster.go +++ b/mantle/platform/machine/qemu/cluster.go @@ -125,7 +125,7 @@ func (qc *Cluster) NewMachineWithQemuOptions(userdata *conf.UserData, options pl // reliably change the Ignition config here... for _, path := range qc.flight.opts.BindRO { destpathrel := strings.TrimLeft(path, "/") - builder.Mount9p(path, "/kola/host/"+destpathrel, true) + builder.MountHost(path, "/kola/host/"+destpathrel, true) } if qc.flight.opts.Memory != "" {