From e90b35438c8b3575ef340d9c7f1060345dd3f0bc Mon Sep 17 00:00:00 2001 From: Aditya R Date: Thu, 24 Mar 2022 14:34:37 +0530 Subject: [PATCH] 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 --- cmd/podman/machine/set.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/podman/machine/set.go b/cmd/podman/machine/set.go index 4a05a9c1cda0..4c15f1de19a6 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, } )