From 69f62a1a9c09818f888247fec96344cae6e4b6ff Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Fri, 8 May 2020 11:09:48 -0400 Subject: default to tunnel without ABISupport tag When compiling a Linux binary without ABISupport, default to use the tunnel. The behaviour is expected in `podman-remote`. Also set a default for the remote flag so `podman-remote` works OOB. Signed-off-by: Valentin Rothberg Signed-off-by: Daniel J Walsh --- cmd/podman/registry/config_abi.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 cmd/podman/registry/config_abi.go (limited to 'cmd/podman/registry/config_abi.go') diff --git a/cmd/podman/registry/config_abi.go b/cmd/podman/registry/config_abi.go new file mode 100644 index 000000000..55430e1bf --- /dev/null +++ b/cmd/podman/registry/config_abi.go @@ -0,0 +1,7 @@ +// +build ABISupport + +package registry + +func init() { + abiSupport = true +} -- cgit v1.2.3-54-g00ecf