summaryrefslogtreecommitdiff
path: root/pkg/machine/config.go
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2021-03-30 13:06:58 -0500
committerbaude <bbaude@redhat.com>2021-03-31 12:51:33 -0500
commitf6438d36f3e52eb721f4223e767fd67b4c274d08 (patch)
tree50ecb0b5c4d1bbbb9742657742cec4f0b835ef01 /pkg/machine/config.go
parent2e72b13823f1be199e483f34899723819d1dc474 (diff)
downloadpodman-f6438d36f3e52eb721f4223e767fd67b4c274d08.tar.gz
podman-f6438d36f3e52eb721f4223e767fd67b4c274d08.tar.bz2
podman-f6438d36f3e52eb721f4223e767fd67b4c274d08.zip
Remove --execute from podman machine ssh
The --execute flag ended up serving no purpose. It was removed and documentation was updated. Fixed a panic when no VM name was provided. [NO TESTS NEEDED] Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/machine/config.go')
-rw-r--r--pkg/machine/config.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkg/machine/config.go b/pkg/machine/config.go
index 554ea7c97..32b3b5c2b 100644
--- a/pkg/machine/config.go
+++ b/pkg/machine/config.go
@@ -56,8 +56,7 @@ type ListResponse struct {
}
type SSHOptions struct {
- Execute bool
- Args []string
+ Args []string
}
type StartOptions struct{}