diff options
author | Brent Baude <bbaude@redhat.com> | 2021-05-26 12:49:54 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2021-05-27 09:10:39 -0500 |
commit | 8e5388e41d60c67199087a5835c6c7725dff6d79 (patch) | |
tree | 37d264101fbc73800f0eaed0e41fe8b126879c09 /pkg/machine/qemu | |
parent | cd1f99d063cf8bb4efdb22d2f56f1aef73ff4ba0 (diff) | |
download | podman-8e5388e41d60c67199087a5835c6c7725dff6d79.tar.gz podman-8e5388e41d60c67199087a5835c6c7725dff6d79.tar.bz2 podman-8e5388e41d60c67199087a5835c6c7725dff6d79.zip |
Add options to podman machine ssh
Add options to the podman machine ssh command that ignore
hostkeychecking and hosts file
-o 'UserKnownHostsFile /dev/null' -o 'StrictHostKeyChecking no
[NO TESTS NEEDED]
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/machine/qemu')
-rw-r--r-- | pkg/machine/qemu/machine.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/machine/qemu/machine.go b/pkg/machine/qemu/machine.go index 269a2a2da..0bd711c90 100644 --- a/pkg/machine/qemu/machine.go +++ b/pkg/machine/qemu/machine.go @@ -408,7 +408,7 @@ func (v *MachineVM) SSH(name string, opts machine.SSHOptions) error { sshDestination := v.RemoteUsername + "@localhost" port := strconv.Itoa(v.Port) - args := []string{"-i", v.IdentityPath, "-p", port, sshDestination} + args := []string{"-i", v.IdentityPath, "-p", port, sshDestination, "-o", "UserKnownHostsFile /dev/null", "-o", "StrictHostKeyChecking no"} if len(opts.Args) > 0 { args = append(args, opts.Args...) } else { |