Previously building with seccomp disabled would cause build failures because of a mismatch in the type signatures of DefaultProfile(). Signed-off-by: Aleksa Sarai <asarai@suse.de> Upstream-commit: a3155743adc80e4ce0c4e84fccad2649d6c14f00 Component: engine
14 lines
261 B
Go
14 lines
261 B
Go
// +build linux,!seccomp
|
|
|
|
package seccomp
|
|
|
|
import (
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/opencontainers/runtime-spec/specs-go"
|
|
)
|
|
|
|
// DefaultProfile returns a nil pointer on unsupported systems.
|
|
func DefaultProfile() *types.Seccomp {
|
|
return nil
|
|
}
|