2016-10-11 20:42:28 +01:00
|
|
|
package root
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"os"
|
|
|
|
|
|
2017-02-21 22:51:47 -08:00
|
|
|
"github.com/coredns/coredns/core/dnsserver"
|
2017-09-14 09:36:06 +01:00
|
|
|
"github.com/coredns/coredns/plugin"
|
2018-04-22 21:40:33 +01:00
|
|
|
clog "github.com/coredns/coredns/plugin/pkg/log"
|
2016-10-11 20:42:28 +01:00
|
|
|
|
2019-07-03 09:04:47 +08:00
|
|
|
"github.com/caddyserver/caddy"
|
2016-10-11 20:42:28 +01:00
|
|
|
)
|
|
|
|
|
|
2018-04-22 21:40:33 +01:00
|
|
|
var log = clog.NewWithPlugin("root")
|
|
|
|
|
|
2019-09-28 10:40:43 +01:00
|
|
|
func init() { plugin.Register("root", setup) }
|
2016-10-11 20:42:28 +01:00
|
|
|
|
|
|
|
|
func setup(c *caddy.Controller) error {
|
|
|
|
|
config := dnsserver.GetConfig(c)
|
|
|
|
|
|
|
|
|
|
for c.Next() {
|
|
|
|
|
if !c.NextArg() {
|
2017-09-14 09:36:06 +01:00
|
|
|
return plugin.Error("root", c.ArgErr())
|
2016-10-11 20:42:28 +01:00
|
|
|
}
|
|
|
|
|
config.Root = c.Val()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check if root path exists
|
|
|
|
|
_, err := os.Stat(config.Root)
|
|
|
|
|
if err != nil {
|
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
|
// Allow this, because the folder might appear later.
|
|
|
|
|
// But make sure the user knows!
|
2018-04-19 07:41:56 +01:00
|
|
|
log.Warningf("Root path does not exist: %s", config.Root)
|
2016-10-11 20:42:28 +01:00
|
|
|
} else {
|
2017-09-14 09:36:06 +01:00
|
|
|
return plugin.Error("root", c.Errf("unable to access root path '%s': %v", config.Root, err))
|
2016-10-11 20:42:28 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}
|