summaryrefslogtreecommitdiff
path: root/pkg/machine/config.go
diff options
context:
space:
mode:
authorAshley Cui <acui@redhat.com>2021-09-03 14:15:32 -0400
committerAshley Cui <acui@redhat.com>2021-09-03 16:40:13 -0400
commit7a667c4ac301c374eaf058b1924c4dbf6a9bbd7a (patch)
treebd9efcce7134b7cb4a71807c224791634b93af9c /pkg/machine/config.go
parent5c3369951573d2079eca0be7fdc40a96933ab977 (diff)
downloadpodman-7a667c4ac301c374eaf058b1924c4dbf6a9bbd7a.tar.gz
podman-7a667c4ac301c374eaf058b1924c4dbf6a9bbd7a.tar.bz2
podman-7a667c4ac301c374eaf058b1924c4dbf6a9bbd7a.zip
Use default username for podman machine ssh
When using the defaut conection for podman machine ssh, use the default username too. Signed-off-by: Ashley Cui <acui@redhat.com>
Diffstat (limited to 'pkg/machine/config.go')
-rw-r--r--pkg/machine/config.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/machine/config.go b/pkg/machine/config.go
index db9bfa7de..620955a7b 100644
--- a/pkg/machine/config.go
+++ b/pkg/machine/config.go
@@ -61,7 +61,8 @@ type ListResponse struct {
}
type SSHOptions struct {
- Args []string
+ Username string
+ Args []string
}
type StartOptions struct{}