summaryrefslogtreecommitdiff
path: root/cmd/podman/machine/ssh.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-04-05 22:16:15 +0200
committerGitHub <noreply@github.com>2021-04-05 22:16:15 +0200
commit8d411a876c2b0ebae4a77a00fcb216d9058f89f0 (patch)
tree67b51a866720b4f0b1ef930f641a33cf79a4d32e /cmd/podman/machine/ssh.go
parenta64f39ba3c3cfb1c3dd761fb464cf3c87a1b5e22 (diff)
parent7a446b06c39a7e29788ff96b65da1068e40e0f6d (diff)
downloadpodman-8d411a876c2b0ebae4a77a00fcb216d9058f89f0.tar.gz
podman-8d411a876c2b0ebae4a77a00fcb216d9058f89f0.tar.bz2
podman-8d411a876c2b0ebae4a77a00fcb216d9058f89f0.zip
Merge pull request #9917 from baude/machineconventions
fix machine naming conventions
Diffstat (limited to 'cmd/podman/machine/ssh.go')
-rw-r--r--cmd/podman/machine/ssh.go6
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,
}
)