From 62c56d7d9a5cbceb33099faad3e12a8eca3d1528 Mon Sep 17 00:00:00 2001 From: Aaron Prindle Date: Fri, 23 Jun 2017 11:07:49 -0700 Subject: [PATCH] Fixed flags to use 9p syntax for uid and gid --- pkg/minikube/cluster/commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/minikube/cluster/commands.go b/pkg/minikube/cluster/commands.go index ad4fcfb4c578..838f9ed1305c 100644 --- a/pkg/minikube/cluster/commands.go +++ b/pkg/minikube/cluster/commands.go @@ -233,7 +233,7 @@ func GetMountCleanupCommand(path string) string { var mountTemplate = ` sudo mkdir -p {{.Path}} || true; -sudo mount -t 9p -o trans=tcp -o port={{.Port}} -o uid={{.UID}} -o gid={{.GID}} {{.IP}} {{.Path}}; +sudo mount -t 9p -o trans=tcp -o port={{.Port}} -o dfltuid={{.UID}} -o dfltgid={{.GID}} {{.IP}} {{.Path}}; sudo chmod 775 {{.Path}};` func GetMountCommand(ip net.IP, path, port string, uid, gid int) (string, error) {