geoip: homebrew default path
This commit is contained in:
11
geoipapi.go
11
geoipapi.go
@@ -153,15 +153,16 @@ func open(t geoType) (*geoip2.Reader, error) {
|
||||
rdr, err := geoip2.Open(fileName)
|
||||
|
||||
return rdr, err
|
||||
|
||||
}
|
||||
|
||||
func findDB() string {
|
||||
dirs := []string{
|
||||
"/usr/share/GeoIP/", // Linux default
|
||||
"/usr/share/local/GeoIP/", // source install?
|
||||
"/usr/local/share/GeoIP/", // FreeBSD
|
||||
"/opt/local/share/GeoIP/", // MacPorts
|
||||
"/usr/share/GeoIP/", // Linux default
|
||||
"/usr/share/local/GeoIP/", // source install?
|
||||
"/usr/local/share/GeoIP/", // FreeBSD
|
||||
"/opt/local/share/GeoIP/", // MacPorts
|
||||
"/opt/homebrew/var/GeoIP/", // Homebrew
|
||||
|
||||
}
|
||||
for _, dir := range dirs {
|
||||
if _, err := os.Stat(dir); err != nil {
|
||||
|
Reference in New Issue
Block a user