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/system/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd/podman/system/service.go') diff --git a/cmd/podman/system/service.go b/cmd/podman/system/service.go index f4b91dd78..552c72f79 100644 --- a/cmd/podman/system/service.go +++ b/cmd/podman/system/service.go @@ -139,6 +139,6 @@ func resolveApiURI(_url []string) (string, error) { case srvArgs.Varlink: return registry.DefaultVarlinkAddress, nil default: - return registry.DefaultAPIAddress, nil + return registry.DefaultRootAPIAddress, nil } } -- cgit v1.2.3-54-g00ecf