diff options
author | Aditya R <arajan@redhat.com> | 2022-03-24 14:34:37 +0530 |
---|---|---|
committer | Aditya R <arajan@redhat.com> | 2022-03-24 14:35:58 +0530 |
commit | e90b35438c8b3575ef340d9c7f1060345dd3f0bc (patch) | |
tree | c1f83b4d073d648612b186d8ef0103b598d8ae66 /cmd/podman | |
parent | 80123ca505081fca513fc0865cf6e2daf43ff854 (diff) | |
download | podman-e90b35438c8b3575ef340d9c7f1060345dd3f0bc.tar.gz podman-e90b35438c8b3575ef340d9c7f1060345dd3f0bc.tar.bz2 podman-e90b35438c8b3575ef340d9c7f1060345dd3f0bc.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>
Diffstat (limited to 'cmd/podman')
-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 4a05a9c1c..4c15f1de1 100644 --- a/cmd/podman/machine/set.go +++ b/cmd/podman/machine/set.go @@ -17,7 +17,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, } ) |