diff options
author | baude <bbaude@redhat.com> | 2021-04-01 10:02:28 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2021-04-05 09:50:03 -0500 |
commit | 7a446b06c39a7e29788ff96b65da1068e40e0f6d (patch) | |
tree | 2ac40ed3dc8706d45f5baac95be4db4f59e83a12 /cmd/podman/machine/ssh.go | |
parent | 1c8d3d0f6fb83b1e6c99dec759f4ae1c6b2e8f18 (diff) | |
download | podman-7a446b06c39a7e29788ff96b65da1068e40e0f6d.tar.gz podman-7a446b06c39a7e29788ff96b65da1068e40e0f6d.tar.bz2 podman-7a446b06c39a7e29788ff96b65da1068e40e0f6d.zip |
fix machine naming conventions
try to align the machine commands and their usage descriptions.
[NO TESTS NEEDED]
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/machine/ssh.go')
-rw-r--r-- | cmd/podman/machine/ssh.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/podman/machine/ssh.go b/cmd/podman/machine/ssh.go index fc7c71992..504fcbe46 100644 --- a/cmd/podman/machine/ssh.go +++ b/cmd/podman/machine/ssh.go @@ -14,11 +14,11 @@ import ( var ( sshCmd = &cobra.Command{ Use: "ssh [NAME] [COMMAND [ARG ...]]", - Short: "SSH into a virtual machine", - Long: "SSH into a virtual machine ", + Short: "SSH into an existing machine", + Long: "SSH into a managed virtual machine ", RunE: ssh, Example: `podman machine ssh myvm - podman machine ssh -e myvm echo hello`, + podman machine ssh myvm echo hello`, ValidArgsFunction: autocompleteMachineSSH, } ) |