mirror of
https://github.com/containers/podman.git
synced 2025-07-15 03:02:52 +08:00
pkg/util: Add no-op implementation of AddPrivilegedDevices on FreeBSD
[NO NEW TESTS NEEDED] Signed-off-by: Doug Rabson <dfr@rabson.org>
This commit is contained in:
@ -5,8 +5,14 @@ package util
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
|
"github.com/opencontainers/runtime-tools/generate"
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetContainerPidInformationDescriptors() ([]string, error) {
|
func GetContainerPidInformationDescriptors() ([]string, error) {
|
||||||
return []string{}, errors.New("this function is not supported on freebsd")
|
return []string{}, errors.New("this function is not supported on freebsd")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func AddPrivilegedDevices(g *generate.Generator) error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user