summaryrefslogtreecommitdiff
path: root/cmd/podman/libpodruntime
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/podman/libpodruntime')
-rw-r--r--cmd/podman/libpodruntime/runtime.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/cmd/podman/libpodruntime/runtime.go b/cmd/podman/libpodruntime/runtime.go
index d1657325d..ea626ed8e 100644
--- a/cmd/podman/libpodruntime/runtime.go
+++ b/cmd/podman/libpodruntime/runtime.go
@@ -42,7 +42,10 @@ func GetRuntimeWithStorageOpts(c *cli.Context, storageOpts *storage.StoreOptions
options = append(options, libpod.WithConmonPath(c.GlobalString("conmon")))
}
- // TODO flag to set CGroup manager?
+ if c.GlobalIsSet("cgroup-manager") {
+ options = append(options, libpod.WithCgroupManager(c.GlobalString("cgroup-manager")))
+ }
+
// TODO flag to set libpod static dir?
// TODO flag to set libpod tmp dir?