diff options
author | Ashley Cui <acui@redhat.com> | 2021-09-03 14:15:32 -0400 |
---|---|---|
committer | Ashley Cui <acui@redhat.com> | 2021-09-03 16:40:13 -0400 |
commit | 7a667c4ac301c374eaf058b1924c4dbf6a9bbd7a (patch) | |
tree | bd9efcce7134b7cb4a71807c224791634b93af9c /pkg/machine/qemu | |
parent | 5c3369951573d2079eca0be7fdc40a96933ab977 (diff) | |
download | podman-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/qemu')
-rw-r--r-- | pkg/machine/qemu/machine.go | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pkg/machine/qemu/machine.go b/pkg/machine/qemu/machine.go index 38a16c3ef..3a6fecff4 100644 --- a/pkg/machine/qemu/machine.go +++ b/pkg/machine/qemu/machine.go @@ -485,7 +485,12 @@ func (v *MachineVM) SSH(name string, opts machine.SSHOptions) error { return errors.Errorf("vm %q is not running.", v.Name) } - sshDestination := v.RemoteUsername + "@localhost" + username := opts.Username + if username == "" { + username = v.RemoteUsername + } + + sshDestination := username + "@localhost" port := strconv.Itoa(v.Port) args := []string{"-i", v.IdentityPath, "-p", port, sshDestination, "-o", "UserKnownHostsFile /dev/null", "-o", "StrictHostKeyChecking no"} |