diff options
author | Aditya R <arajan@redhat.com> | 2022-03-24 14:34:37 +0530 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2022-03-30 15:36:05 -0400 |
commit | ee9030bfdee6f0b6f3eb1e45081cb604c32581d0 (patch) | |
tree | fdba606c223ff078b504ca2913fb7c2906b5bd4e | |
parent | 1266f7342057cf2161122f52e48ce80b80f233a4 (diff) | |
download | podman-ee9030bfdee6f0b6f3eb1e45081cb604c32581d0.tar.gz podman-ee9030bfdee6f0b6f3eb1e45081cb604c32581d0.tar.bz2 podman-ee9030bfdee6f0b6f3eb1e45081cb604c32581d0.zip |
machine-set: fix example for setting rootful flag
Flag is actually named `rootful` however documented as `root`, fix the
documented example as actual flag.
Both `podman machine init` and `podman machine set` uses flag `rootfull`
[NO TESTS NEEDED]
[NO NEW TESTS NEEDED]
Signed-off-by: Aditya R <arajan@redhat.com>
-rw-r--r-- | cmd/podman/machine/set.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/machine/set.go b/cmd/podman/machine/set.go index c978206f0..41c08fed5 100644 --- a/cmd/podman/machine/set.go +++ b/cmd/podman/machine/set.go @@ -16,7 +16,7 @@ var ( Long: "Sets an updatable virtual machine setting", RunE: setMachine, Args: cobra.MaximumNArgs(1), - Example: `podman machine set --root=false`, + Example: `podman machine set --rootful=false`, ValidArgsFunction: completion.AutocompleteNone, } ) |