mirror of
https://github.com/coredns/coredns.git
synced 2025-10-27 00:04:15 -04:00
plugin/forward: add it (#1447)
* plugin/forward: add it This moves coredns/forward into CoreDNS. Fixes as a few bugs, adds a policy option and more tests to the plugin. Update the documentation, test IPv6 address and add persistent tests. * Always use random policy when spraying * include scrub fix here as well * use correct var name * Code review * go vet * Move logging to metrcs * Small readme updates * Fix readme
This commit is contained in:
3
Makefile
3
Makefile
@@ -29,20 +29,17 @@ godeps:
|
||||
(cd $(GOPATH)/src/github.com/prometheus/client_golang 2>/dev/null && git checkout -q master 2>/dev/null || true)
|
||||
(cd $(GOPATH)/src/golang.org/x/net 2>/dev/null && git checkout -q master 2>/dev/null || true)
|
||||
(cd $(GOPATH)/src/golang.org/x/text 2>/dev/null && git checkout -q master 2>/dev/null || true)
|
||||
(cd $(GOPATH)/src/github.com/coredns/forward 2>/dev/null && git checkout -q master 2>/dev/null || true)
|
||||
go get -u github.com/mholt/caddy
|
||||
go get -u github.com/miekg/dns
|
||||
go get -u github.com/prometheus/client_golang/prometheus/promhttp
|
||||
go get -u github.com/prometheus/client_golang/prometheus
|
||||
go get -u golang.org/x/net/context
|
||||
go get -u golang.org/x/text
|
||||
-go get -f -u github.com/coredns/forward
|
||||
(cd $(GOPATH)/src/github.com/mholt/caddy && git checkout -q v0.10.10)
|
||||
(cd $(GOPATH)/src/github.com/miekg/dns && git checkout -q v1.0.4)
|
||||
(cd $(GOPATH)/src/github.com/prometheus/client_golang && git checkout -q v0.8.0)
|
||||
(cd $(GOPATH)/src/golang.org/x/net && git checkout -q release-branch.go1.9)
|
||||
(cd $(GOPATH)/src/golang.org/x/text && git checkout -q e19ae1496984b1c655b8044a65c0300a3c878dd3)
|
||||
(cd $(GOPATH)/src/github.com/coredns/forward && git checkout -q v0.0.2)
|
||||
|
||||
.PHONY: travis
|
||||
travis: check
|
||||
|
||||
Reference in New Issue
Block a user