aboutsummaryrefslogtreecommitdiffstats
path: root/vm/starnix
diff options
context:
space:
mode:
authorLaura Peskin <pesk@google.com>2024-04-09 14:05:02 -0700
committerAleksandr Nogikh <nogikh@google.com>2024-04-15 13:04:43 +0000
commit3aad190a2e29390065928299d214cc740e5585bb (patch)
treecdf5edee4f2a5613832c74e0576950a31f5b0e88 /vm/starnix
parentfdcfb1aa92efe1cbbc097e50b0f56b1ca3f7d741 (diff)
vm/starnix: change target dir from /data to /tmp
Since /data is not always mounted by default, push the executor binary to /tmp instead.
Diffstat (limited to 'vm/starnix')
-rw-r--r--vm/starnix/starnix.go2
1 files changed, 1 insertions, 1 deletions
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{}