summaryrefslogtreecommitdiff
path: root/pkg/machine/qemu
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-06-02 04:24:01 -0400
committerGitHub <noreply@github.com>2022-06-02 04:24:01 -0400
commit2958aee08389aa5e89794f5e5b4f30ac3328d071 (patch)
tree3fa18d5bf4759bfe6281725760141e3cc65f1c49 /pkg/machine/qemu
parentf27f9de5e668afb50073f125f25f8f61618a5742 (diff)
parent4a834655118a83898a20b20663dfd048855fbf5f (diff)
downloadpodman-2958aee08389aa5e89794f5e5b4f30ac3328d071.tar.gz
podman-2958aee08389aa5e89794f5e5b4f30ac3328d071.tar.bz2
podman-2958aee08389aa5e89794f5e5b4f30ac3328d071.zip
Merge pull request #14417 from Luap99/machine-ssh
podman machine ssh: set correct exit code
Diffstat (limited to 'pkg/machine/qemu')
-rw-r--r--pkg/machine/qemu/machine.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/machine/qemu/machine.go b/pkg/machine/qemu/machine.go
index f9119af94..b9f23662e 100644
--- a/pkg/machine/qemu/machine.go
+++ b/pkg/machine/qemu/machine.go
@@ -952,7 +952,8 @@ func (v *MachineVM) SSH(_ string, opts machine.SSHOptions) error {
sshDestination := username + "@localhost"
port := strconv.Itoa(v.Port)
- args := []string{"-i", v.IdentityPath, "-p", port, sshDestination, "-o", "UserKnownHostsFile=/dev/null", "-o", "StrictHostKeyChecking=no"}
+ args := []string{"-i", v.IdentityPath, "-p", port, sshDestination, "-o", "UserKnownHostsFile=/dev/null",
+ "-o", "StrictHostKeyChecking=no", "-o", "LogLevel=ERROR"}
if len(opts.Args) > 0 {
args = append(args, opts.Args...)
} else {