diff options
| author | Laura Peskin <pesk@google.com> | 2024-04-09 14:05:02 -0700 |
|---|---|---|
| committer | Aleksandr Nogikh <nogikh@google.com> | 2024-04-15 13:04:43 +0000 |
| commit | 3aad190a2e29390065928299d214cc740e5585bb (patch) | |
| tree | cdf5edee4f2a5613832c74e0576950a31f5b0e88 | |
| parent | fdcfb1aa92efe1cbbc097e50b0f56b1ca3f7d741 (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.
| -rw-r--r-- | vm/starnix/starnix.go | 2 |
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{} |
