summaryrefslogtreecommitdiff
path: root/libpod/networking_machine.go
diff options
context:
space:
mode:
authorJason T. Greene <jason.greene@redhat.com>2022-04-21 15:37:34 -0500
committerJason T. Greene <jason.greene@redhat.com>2022-04-25 13:52:27 -0500
commit3b6ffcd290978f5e0110e925c212d6396accee10 (patch)
treedd0241bb9b058f6eecd7504361b9a5bb64a6cb25 /libpod/networking_machine.go
parent6984a0f35704204fa15374aa2c133c4e6e0b366f (diff)
downloadpodman-3b6ffcd290978f5e0110e925c212d6396accee10.tar.gz
podman-3b6ffcd290978f5e0110e925c212d6396accee10.tar.bz2
podman-3b6ffcd290978f5e0110e925c212d6396accee10.zip
Update to use new common machine API
Signed-off-by: Jason T. Greene <jason.greene@redhat.com>
Diffstat (limited to 'libpod/networking_machine.go')
-rw-r--r--libpod/networking_machine.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/libpod/networking_machine.go b/libpod/networking_machine.go
index d2a6b7cfa..73089c474 100644
--- a/libpod/networking_machine.go
+++ b/libpod/networking_machine.go
@@ -14,6 +14,7 @@ import (
"time"
"github.com/containers/common/libnetwork/types"
+ "github.com/containers/common/pkg/machine"
"github.com/sirupsen/logrus"
)
@@ -117,7 +118,7 @@ func annotateGvproxyResponseError(r io.Reader) error {
// exposeMachinePorts exposes the ports for podman machine via gvproxy
func (r *Runtime) exposeMachinePorts(ports []types.PortMapping) error {
- if !r.config.Engine.MachineEnabled {
+ if !machine.IsGvProxyBased() {
return nil
}
return requestMachinePorts(true, ports)
@@ -125,7 +126,7 @@ func (r *Runtime) exposeMachinePorts(ports []types.PortMapping) error {
// unexposeMachinePorts closes the ports for podman machine via gvproxy
func (r *Runtime) unexposeMachinePorts(ports []types.PortMapping) error {
- if !r.config.Engine.MachineEnabled {
+ if !machine.IsGvProxyBased() {
return nil
}
return requestMachinePorts(false, ports)