Fix local interface name on OS X

This commit is contained in:
Gregory Man
2015-10-29 14:30:26 +02:00
parent 7dd7e6ac46
commit efada3bd28

View File

@@ -7,6 +7,7 @@ import (
"net"
"os"
"path/filepath"
"runtime"
"strings"
"github.com/hashicorp/hcl"
@@ -220,7 +221,12 @@ func DevConfig() *Config {
conf.DevMode = true
conf.EnableDebug = true
conf.DisableAnonymousSignature = true
conf.Client.NetworkInterface = "lo"
if runtime.GOOS == "darwin" {
conf.Client.NetworkInterface = "lo0"
} else {
conf.Client.NetworkInterface = "lo"
}
return conf
}