blob: 85ff1e9fd116aab08d7c9b37c7aaa8e9981468f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// +build !linux
package specgen
import (
"github.com/containers/podman/v2/libpod/image"
spec "github.com/opencontainers/runtime-spec/specs-go"
"github.com/pkg/errors"
)
func (s *SpecGenerator) getSeccompConfig(configSpec *spec.Spec, img *image.Image) (*spec.LinuxSeccomp, error) {
return nil, errors.New("function not supported on non-linux OS's")
}
|