You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/podman/volumes/rm.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ func init() {
46
46
flags:=rmCommand.Flags()
47
47
flags.BoolVarP(&rmOptions.All, "all", "a", false, "Remove all volumes")
48
48
flags.BoolVarP(&rmOptions.Force, "force", "f", false, "Remove a volume by force, even if it is being used by a container")
49
-
flags.BoolVar(&includeProtected, "include-protected", false, "Include protected volumes in removal operation")
49
+
flags.BoolVar(&includeProtected, "include-pinned", false, "Include pinned volumes in removal operation")
50
50
timeFlagName:="time"
51
51
flags.IntVarP(&stopTimeout, timeFlagName, "t", int(containerConfig.Engine.StopTimeout), "Seconds to wait for running containers to stop before killing the container")
0 commit comments