libpod: Add FreeBSD implementation of container internals

This contains a lot of code in common with container_internal_linux.go.
Subsequent commits will move the shared code to
container_internal_common.go to reduce the duplication.

[NO NEW TESTS NEEDED]

Signed-off-by: Doug Rabson <dfr@rabson.org>
This commit is contained in:
Doug Rabson
2022-08-26 15:03:00 +01:00
parent 8ade76e79b
commit 6e4b5b0075
2 changed files with 2610 additions and 2 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
//go:build !linux
// +build !linux
//go:build !linux && !freebsd
// +build !linux,!freebsd
package libpod