From e17cd49a78eb3f1db11b9051e910bf5167727eb0 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Tue, 21 Jul 2020 15:21:52 -0400 Subject: Enable --remote flag Signed-off-by: Daniel J Walsh --- cmd/podman/registry/config.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cmd/podman/registry/config.go') diff --git a/cmd/podman/registry/config.go b/cmd/podman/registry/config.go index ea33e3a4e..667c87f28 100644 --- a/cmd/podman/registry/config.go +++ b/cmd/podman/registry/config.go @@ -45,11 +45,12 @@ func newPodmanConfig() { case "linux": // Some linux clients might only be compiled without ABI // support (e.g., podman-remote). - if abiSupport && !remoteOverride { + if abiSupport && !IsRemote() { mode = entities.ABIMode } else { mode = entities.TunnelMode } + default: fmt.Fprintf(os.Stderr, "%s is not a supported OS", runtime.GOOS) os.Exit(1) -- cgit v1.2.3-54-g00ecf