diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-06-01 19:41:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-01 19:41:46 +0200 |
commit | cbffdddce6d741eac4f3efa132016aba99683500 (patch) | |
tree | 927b74764e93a47aae61597100502acbe17f1afd /pkg/machine/qemu/options_darwin.go | |
parent | 7a52440a6d7fe7ac1ddccf9fe7247d7abca8ecce (diff) | |
parent | 7ef3981abe2412727840a2886489a08c03a05299 (diff) | |
download | podman-cbffdddce6d741eac4f3efa132016aba99683500.tar.gz podman-cbffdddce6d741eac4f3efa132016aba99683500.tar.bz2 podman-cbffdddce6d741eac4f3efa132016aba99683500.zip |
Merge pull request #10488 from baude/machinehostnetwork
Enable port forwarding on host
Diffstat (limited to 'pkg/machine/qemu/options_darwin.go')
-rw-r--r-- | pkg/machine/qemu/options_darwin.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/machine/qemu/options_darwin.go b/pkg/machine/qemu/options_darwin.go index 46ccf24cb..440937131 100644 --- a/pkg/machine/qemu/options_darwin.go +++ b/pkg/machine/qemu/options_darwin.go @@ -6,7 +6,7 @@ import ( "github.com/pkg/errors" ) -func getSocketDir() (string, error) { +func getRuntimeDir() (string, error) { tmpDir, ok := os.LookupEnv("TMPDIR") if !ok { return "", errors.New("unable to resolve TMPDIR") |