From 8aa29fd54f4fbcc4feebdc234c1c5cb454173a7f Mon Sep 17 00:00:00 2001 From: Doug Rabson Date: Thu, 11 Aug 2022 11:05:52 +0100 Subject: [PATCH] cmd/podman: Enable ABI and Tunnel mode for freebsd [NO NEW TESTS NEEDED] Signed-off-by: Doug Rabson --- cmd/podman/registry/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/podman/registry/config.go b/cmd/podman/registry/config.go index cae618b44f..a118fdc4dd 100644 --- a/cmd/podman/registry/config.go +++ b/cmd/podman/registry/config.go @@ -61,7 +61,7 @@ func newPodmanConfig() { switch runtime.GOOS { case "darwin", "windows": mode = entities.TunnelMode - case "linux": + case "linux", "freebsd": // Some linux clients might only be compiled without ABI // support (e.g., podman-remote). if abiSupport && !IsRemote() {