These plugins where missed in #3287 because their setup is done in a file other than setup.go Signed-off-by: Miek Gieben <miek@miek.nl>
23 lines
389 B
Go
23 lines
389 B
Go
package debug
|
|
|
|
import (
|
|
"github.com/coredns/coredns/core/dnsserver"
|
|
"github.com/coredns/coredns/plugin"
|
|
|
|
"github.com/caddyserver/caddy"
|
|
)
|
|
|
|
func init() { plugin.Register("debug", setup) }
|
|
|
|
func setup(c *caddy.Controller) error {
|
|
config := dnsserver.GetConfig(c)
|
|
|
|
for c.Next() {
|
|
if c.NextArg() {
|
|
return plugin.Error("debug", c.ArgErr())
|
|
}
|
|
config.Debug = true
|
|
}
|
|
|
|
return nil
|
|
}
|