diff options
author | baude <bbaude@redhat.com> | 2021-03-30 13:06:58 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2021-03-31 12:51:33 -0500 |
commit | f6438d36f3e52eb721f4223e767fd67b4c274d08 (patch) | |
tree | 50ecb0b5c4d1bbbb9742657742cec4f0b835ef01 /pkg/machine/config.go | |
parent | 2e72b13823f1be199e483f34899723819d1dc474 (diff) | |
download | podman-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.go | 3 |
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{} |