2bb4191047
Signed-off-by: Andrew Pilloud <andrewpilloud@igneoussystems.com>
20 lines
543 B
Go
20 lines
543 B
Go
// +build !seccomp
|
|
|
|
package seccomp
|
|
|
|
import "github.com/opencontainers/runtime-tools/generate"
|
|
|
|
// IsEnabled returns false, when build without seccomp build tag.
|
|
func IsEnabled() bool {
|
|
return false
|
|
}
|
|
|
|
// LoadProfileFromStruct takes a Seccomp struct and setup seccomp in the spec.
|
|
func LoadProfileFromStruct(config Seccomp, specgen *generate.Generator) error {
|
|
return nil
|
|
}
|
|
|
|
// LoadProfileFromBytes takes a byte slice and decodes the seccomp profile.
|
|
func LoadProfileFromBytes(body []byte, specgen *generate.Generator) error {
|
|
return nil
|
|
}
|