From 9fc15c7ea33806fc224fea01dafd6c11a2790c7e Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 27 Sep 2017 17:07:31 +0200 Subject: vm/gce: windows support Support custom pre-created images. Support non-root user. Use dir instead of pwd on windows. Don't use sudo on windows. --- vm/vmimpl/vmimpl.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'vm/vmimpl/vmimpl.go') diff --git a/vm/vmimpl/vmimpl.go b/vm/vmimpl/vmimpl.go index 6540ecc91..617f9bc0f 100644 --- a/vm/vmimpl/vmimpl.go +++ b/vm/vmimpl/vmimpl.go @@ -50,7 +50,8 @@ type Env struct { Arch string // target arch Workdir string Image string - Sshkey string + SshKey string + SshUser string Debug bool Config []byte // json-serialized VM-type-specific config } -- cgit mrf-deployment