mirror of
https://github.com/containers/podman.git
synced 2025-12-12 17:57:31 +08:00
so it can build without cgo since seccomp requires it. Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
12 lines
228 B
Go
12 lines
228 B
Go
// +build linux,!cgo
|
|
|
|
package createconfig
|
|
|
|
import (
|
|
spec "github.com/opencontainers/runtime-spec/specs-go"
|
|
)
|
|
|
|
func getSeccompConfig(config *CreateConfig, configSpec *spec.Spec) (*spec.LinuxSeccomp, error) {
|
|
return nil, nil
|
|
}
|