Merge pull request #361 from gregory-m/lo-iface-name-fix

Fix local interface name on OS X
This commit is contained in:
Diptanu Choudhury 2015-10-29 13:56:19 -07:00
commit e76465bfd7
1 changed files with 7 additions and 1 deletions

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
}