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/init.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/init.go')
-rw-r--r-- | cmd/podman/machine/init.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/podman/machine/init.go b/cmd/podman/machine/init.go index 61261e008..02dfc80aa 100644 --- a/cmd/podman/machine/init.go +++ b/cmd/podman/machine/init.go @@ -15,8 +15,8 @@ import ( var ( initCmd = &cobra.Command{ Use: "init [options] [NAME]", - Short: "initialize a vm", - Long: "initialize a virtual machine for Podman to run on. Virtual machines are used to run Podman.", + Short: "Initialize a virtual machine", + Long: "initialize a virtual machine ", RunE: initMachine, Args: cobra.MaximumNArgs(1), Example: `podman machine init myvm`, |