diff options
-rw-r--r-- | cmd/podman/containers/restart.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/containers/restart.go b/cmd/podman/containers/restart.go index 32c1f6c47..4e0e96411 100644 --- a/cmd/podman/containers/restart.go +++ b/cmd/podman/containers/restart.go @@ -59,7 +59,7 @@ func restartFlags(cmd *cobra.Command) { flags := cmd.Flags() flags.BoolVarP(&restartOpts.All, "all", "a", false, "Restart all non-running containers") - flags.BoolVar(&restartOpts.Running, "running", false, "Restart only running containers when --all is used") + flags.BoolVar(&restartOpts.Running, "running", false, "Restart only running containers") cidfileFlagName := "cidfile" flags.StringArrayVar(&restartCidFiles, cidfileFlagName, nil, "Read the container ID from the file") |