summaryrefslogtreecommitdiff
path: root/cmd/podman
diff options
context:
space:
mode:
authorAditya R <arajan@redhat.com>2022-03-24 14:34:37 +0530
committerAditya R <arajan@redhat.com>2022-03-24 14:35:58 +0530
commite90b35438c8b3575ef340d9c7f1060345dd3f0bc (patch)
treec1f83b4d073d648612b186d8ef0103b598d8ae66 /cmd/podman
parent80123ca505081fca513fc0865cf6e2daf43ff854 (diff)
downloadpodman-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.go2
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,
}
)