2015-12-29 03:24:44 +00:00
|
|
|
// +build linux,!seccomp
|
|
|
|
|
2016-01-19 22:57:03 +00:00
|
|
|
package seccomp
|
2015-12-29 03:24:44 +00:00
|
|
|
|
2016-05-06 14:17:41 +00:00
|
|
|
import (
|
|
|
|
"github.com/docker/engine-api/types"
|
|
|
|
"github.com/opencontainers/specs/specs-go"
|
2015-12-29 03:24:44 +00:00
|
|
|
)
|
2016-05-06 14:17:41 +00:00
|
|
|
|
|
|
|
// DefaultProfile returns a nil pointer on unsupported systems.
|
|
|
|
func DefaultProfile(rs *specs.Spec) *types.Seccomp {
|
|
|
|
return nil
|
|
|
|
}
|