summaryrefslogtreecommitdiff
path: root/pkg/util/utils_freebsd.go
blob: ba91308aff2717b95c9816f4a453bc89a23d29a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//go:build freebsd
// +build freebsd

package util

import (
	"errors"

	"github.com/opencontainers/runtime-tools/generate"
)

func GetContainerPidInformationDescriptors() ([]string, error) {
	return []string{}, errors.New("this function is not supported on freebsd")
}

func AddPrivilegedDevices(g *generate.Generator, systemdMode bool) error {
	return nil
}