mirror of
https://github.com/containers/podman.git
synced 2025-12-04 20:28:40 +08:00
Push up createConfig.CgroupParent processing to parent
Signed-off-by: Jhon Honce <jhonce@redhat.com> Closes: #370 Approved by: rhatdan
This commit is contained in:
@@ -72,7 +72,13 @@ func runCmd(c *cli.Context) error {
|
||||
options = append(options, libpod.WithUser(createConfig.User))
|
||||
options = append(options, libpod.WithShmDir(createConfig.ShmDir))
|
||||
options = append(options, libpod.WithShmSize(createConfig.Resources.ShmSize))
|
||||
options = append(options, libpod.WithCgroupParent(createConfig.CgroupParent))
|
||||
|
||||
// Default used if not overridden on command line
|
||||
|
||||
if createConfig.CgroupParent != "" {
|
||||
options = append(options, libpod.WithCgroupParent(createConfig.CgroupParent))
|
||||
}
|
||||
|
||||
ctr, err := runtime.NewContainer(runtimeSpec, options...)
|
||||
if err != nil {
|
||||
return err
|
||||
|
||||
Reference in New Issue
Block a user