diff options
Diffstat (limited to 'cmd/podman/common.go')
-rw-r--r-- | cmd/podman/common.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cmd/podman/common.go b/cmd/podman/common.go index 5e670dcc8..e3997539a 100644 --- a/cmd/podman/common.go +++ b/cmd/podman/common.go @@ -14,6 +14,14 @@ import ( "github.com/urfave/cli" ) +var ( + stores = make(map[storage.Store]struct{}) + LatestFlag = cli.BoolFlag{ + Name: "latest, l", + Usage: "act on the latest container podman is aware of", + } +) + const crioConfigPath = "/etc/crio/crio.conf" func getRuntime(c *cli.Context) (*libpod.Runtime, error) { |