aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAditya R <arajan@redhat.com>2022-03-24 14:34:37 +0530
committerMatthew Heon <mheon@redhat.com>2022-03-30 15:36:05 -0400
commitee9030bfdee6f0b6f3eb1e45081cb604c32581d0 (patch)
treefdba606c223ff078b504ca2913fb7c2906b5bd4e
parent1266f7342057cf2161122f52e48ce80b80f233a4 (diff)
downloadpodman-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.go2
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,
}
)