From 3aad190a2e29390065928299d214cc740e5585bb Mon Sep 17 00:00:00 2001 From: Laura Peskin Date: Tue, 9 Apr 2024 14:05:02 -0700 Subject: vm/starnix: change target dir from /data to /tmp Since /data is not always mounted by default, push the executor binary to /tmp instead. --- vm/starnix/starnix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm/starnix/starnix.go b/vm/starnix/starnix.go index c3973fee9..feb723bdc 100644 --- a/vm/starnix/starnix.go +++ b/vm/starnix/starnix.go @@ -57,7 +57,7 @@ type instance struct { diagnose chan bool } -const targetDir = "/data" +const targetDir = "/tmp" func ctor(env *vmimpl.Env) (vmimpl.Pool, error) { cfg := &Config{} -- cgit mrf-deployment