|
@@ -14,19 +14,20 @@ forum.
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
-If you already have go installed, just run `go get` to install the Go
|
|
|
-dependencies. GeoDNS requires Go 1.13 or later.
|
|
|
+Release builds are available in a yum repository at
|
|
|
+`https://pkgs.ntppool.org/yum/` and apt (debian, ubuntu) packages at
|
|
|
+`https://pkgs.ntppool.org/apt/`.
|
|
|
+
|
|
|
+### From source
|
|
|
|
|
|
If you don't have Go installed the easiest way to build geodns from source is to
|
|
|
-download Go from https://golang.org/dl/ and untar'ing it in
|
|
|
-`/usr/local/go` and then run the following from a regular user account:
|
|
|
+download and install Go from `https://golang.org/dl/`.
|
|
|
+
|
|
|
+GeoDNS generally requires a recent version of Go (1.15+).
|
|
|
|
|
|
```sh
|
|
|
-export PATH=$PATH:/usr/local/go/bin
|
|
|
-export GOPATH=~/go
|
|
|
-go get github.com/abh/geodns
|
|
|
-cd ~/go/src/github.com/abh/geodns
|
|
|
-go test
|
|
|
+git clone https://github.com/abh/geodns.git
|
|
|
+cd geodns
|
|
|
go build
|
|
|
./geodns -h
|
|
|
```
|