plugin.cfg: go gen -> go generate (#3511)

This takes over #3476 because that is a good change but lacks the DCO
and the author seems unresponsive.

Reformat the file a bit more while we're at it.

Closes: #3476

Signed-off-by: Miek Gieben <miek@miek.nl>
This commit is contained in:
Miek Gieben 2019-12-07 08:36:43 +00:00 committed by GitHub
parent a53321d9d6
commit ecd5c0997d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,20 +1,20 @@
# Directives are registered in the order they should be # Directives are registered in the order they should be executed.
# executed.
# #
# Ordering is VERY important. Every plugin will # Ordering is VERY important. Every plugin will feel the effects of all other
# feel the effects of all other plugin below # plugin below (after) them during a request, but they must not care what plugin
# (after) them during a request, but they must not # above them are doing.
# care what plugin above them are doing.
# How to rebuild with updated plugin configurations: # How to rebuild with updated plugin configurations: Modify the list below and
# Modify the list below and run `go gen && go build` # run `go generate && go build`
# The parser takes the input format of # The parser takes the input format of:
#
# <plugin-name>:<package-name> # <plugin-name>:<package-name>
# Or # Or
# <plugin-name>:<fully-qualified-package-name> # <plugin-name>:<fully-qualified-package-name>
# #
# External plugin example: # External plugin example:
#
# log:github.com/coredns/coredns/plugin/log # log:github.com/coredns/coredns/plugin/log
# Local plugin example: # Local plugin example:
# log:log # log:log