summaryrefslogtreecommitdiff
path: root/libpod/container_unsupported.go
diff options
context:
space:
mode:
authorDoug Rabson <dfr@rabson.org>2022-08-19 11:30:39 +0100
committerDoug Rabson <dfr@rabson.org>2022-08-23 15:31:00 +0100
commit8f797ab66166ec99d0eff0bb0aed997bb1876c5d (patch)
tree689e0b6441b838f21e3a72077276000a557c1027 /libpod/container_unsupported.go
parent498fe67ef7050f4cf7849a5c5545cbe5a9dd9cd8 (diff)
downloadpodman-8f797ab66166ec99d0eff0bb0aed997bb1876c5d.tar.gz
podman-8f797ab66166ec99d0eff0bb0aed997bb1876c5d.tar.bz2
podman-8f797ab66166ec99d0eff0bb0aed997bb1876c5d.zip
libpod: Add definition of containerPlatformState for FreeBSD
For FreeBSD, we need the name of the 'network jail' which is the parent of all containers in a pod. Having a separate jail for the network configuration also simplifies the implementation of CNI plugins so we use this pattern for solitary containers as well as pods. [NO NEW TESTS NEEDED] Signed-off-by: Doug Rabson <dfr@rabson.org>
Diffstat (limited to 'libpod/container_unsupported.go')
-rw-r--r--libpod/container_unsupported.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpod/container_unsupported.go b/libpod/container_unsupported.go
index 5a46c163c..16bf11622 100644
--- a/libpod/container_unsupported.go
+++ b/libpod/container_unsupported.go
@@ -1,5 +1,5 @@
-//go:build !linux
-// +build !linux
+//go:build !linux && !freebsd
+// +build !linux,!freebsd
package libpod