mirror of
https://github.com/containers/podman.git
synced 2025-06-03 12:17:13 +08:00

There is no point in calling into cgroup specific code as freebsd does not support cgroups. Signed-off-by: Paul Holzinger <pholzing@redhat.com>
9 lines
240 B
Go
9 lines
240 B
Go
package generate
|
|
|
|
import "github.com/containers/podman/v4/pkg/specgen"
|
|
|
|
// verifyContainerResources does nothing on freebsd as it has no cgroups
|
|
func verifyContainerResources(s *specgen.SpecGenerator) ([]string, error) {
|
|
return nil, nil
|
|
}
|