From d29fd8c5504cb86e7ee86ef9fdcedfb648ec0a5e Mon Sep 17 00:00:00 2001 From: "coredns-auto-go-mod-tidy[bot]" Date: Tue, 9 Feb 2021 13:36:55 +0000 Subject: [PATCH] auto make -f Makefile.doc --- man/coredns-acl.7 | 22 +++++++++++++++++++--- man/coredns-any.7 | 2 +- man/coredns-auto.7 | 2 +- man/coredns-autopath.7 | 2 +- man/coredns-azure.7 | 2 +- man/coredns-bind.7 | 2 +- man/coredns-bufsize.7 | 2 +- man/coredns-cache.7 | 2 +- man/coredns-cancel.7 | 2 +- man/coredns-chaos.7 | 2 +- man/coredns-clouddns.7 | 2 +- man/coredns-debug.7 | 2 +- man/coredns-dns64.7 | 2 +- man/coredns-dnssec.7 | 2 +- man/coredns-dnstap.7 | 2 +- man/coredns-erratic.7 | 2 +- man/coredns-errors.7 | 2 +- man/coredns-etcd.7 | 2 +- man/coredns-file.7 | 2 +- man/coredns-forward.7 | 2 +- man/coredns-grpc.7 | 2 +- man/coredns-health.7 | 2 +- man/coredns-hosts.7 | 2 +- man/coredns-import.7 | 2 +- man/coredns-k8s_external.7 | 2 +- man/coredns-kubernetes.7 | 9 ++++++--- man/coredns-loadbalance.7 | 2 +- man/coredns-local.7 | 2 +- man/coredns-log.7 | 2 +- man/coredns-loop.7 | 2 +- man/coredns-metadata.7 | 2 +- man/coredns-metrics.7 | 2 +- man/coredns-nsid.7 | 2 +- man/coredns-pprof.7 | 2 +- man/coredns-ready.7 | 2 +- man/coredns-reload.7 | 2 +- man/coredns-rewrite.7 | 2 +- man/coredns-root.7 | 2 +- man/coredns-route53.7 | 2 +- man/coredns-secondary.7 | 2 +- man/coredns-sign.7 | 2 +- man/coredns-template.7 | 2 +- man/coredns-tls.7 | 2 +- man/coredns-trace.7 | 2 +- man/coredns-transfer.7 | 2 +- man/coredns-whoami.7 | 2 +- man/coredns.1 | 2 +- man/corefile.5 | 2 +- 48 files changed, 71 insertions(+), 52 deletions(-) diff --git a/man/coredns-acl.7 b/man/coredns-acl.7 index 0f12b0c94..f3400fe04 100644 --- a/man/coredns-acl.7 +++ b/man/coredns-acl.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-ACL" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-ACL" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP @@ -7,7 +7,7 @@ .SH "DESCRIPTION" .PP -With \fB\fCacl\fR enabled, users are able to block suspicious DNS queries by configuring IP filter rule sets, i.e. allowing authorized queries to recurse or blocking unauthorized queries. +With \fB\fCacl\fR enabled, users are able to block or filter suspicious DNS queries by configuring IP filter rule sets, i.e. allowing authorized queries to recurse or blocking unauthorized queries. .PP This plugin can be used multiple times per Server Block. @@ -27,7 +27,7 @@ acl [ZONES...] { .IP \(bu 4 \fBZONES\fP zones it should be authoritative for. If empty, the zones from the configuration block are used. .IP \(bu 4 -\fBACTION\fP (\fIallow\fP or \fIblock\fP) defines the way to deal with DNS queries matched by this rule. The default action is \fIallow\fP, which means a DNS query not matched by any rules will be allowed to recurse. +\fBACTION\fP (\fIallow\fP, \fIblock\fP, or \fIfilter\fP) defines the way to deal with DNS queries matched by this rule. The default action is \fIallow\fP, which means a DNS query not matched by any rules will be allowed to recurse. The difference between \fIblock\fP and \fIfilter\fP is that block returns status code of \fIREFUSED\fP while filter returns an empty set \fINOERROR\fP .IP \(bu 4 \fBQTYPE\fP is the query type to match for the requests to be allowed or blocked. Common resource record types are supported. \fB\fC*\fR stands for all record types. The default behavior for an omitted \fB\fCtype QTYPE...\fR is to match all kinds of DNS queries (same as \fB\fCtype *\fR). .IP \(bu 4 @@ -54,6 +54,22 @@ Block all DNS queries with record type A from 192.168.0.0/16: .fi .RE +.PP +Filter all DNS queries with record type A from 192.168.0.0/16: + +.PP +.RS + +.nf +\&. { + acl { + filter type A net 192.168.0.0/16 + } +} + +.fi +.RE + .PP Block all DNS queries from 192.168.0.0/16 except for 192.168.1.0/24: diff --git a/man/coredns-any.7 b/man/coredns-any.7 index 44d23f9a2..1e620692f 100644 --- a/man/coredns-any.7 +++ b/man/coredns-any.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-ANY" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-ANY" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-auto.7 b/man/coredns-auto.7 index 69dadef4a..1afb7f6e3 100644 --- a/man/coredns-auto.7 +++ b/man/coredns-auto.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-AUTO" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-AUTO" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-autopath.7 b/man/coredns-autopath.7 index 24d324a39..9b0c2458c 100644 --- a/man/coredns-autopath.7 +++ b/man/coredns-autopath.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-AUTOPATH" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-AUTOPATH" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-azure.7 b/man/coredns-azure.7 index 41958b530..cea8ae21d 100644 --- a/man/coredns-azure.7 +++ b/man/coredns-azure.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-AZURE" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-AZURE" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-bind.7 b/man/coredns-bind.7 index ff476eaa5..a0bd92f33 100644 --- a/man/coredns-bind.7 +++ b/man/coredns-bind.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-BIND" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-BIND" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-bufsize.7 b/man/coredns-bufsize.7 index 3346fa6d2..11a5c1d8c 100644 --- a/man/coredns-bufsize.7 +++ b/man/coredns-bufsize.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-BUFSIZE" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-BUFSIZE" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-cache.7 b/man/coredns-cache.7 index ff5a8d173..393196538 100644 --- a/man/coredns-cache.7 +++ b/man/coredns-cache.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-CACHE" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-CACHE" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-cancel.7 b/man/coredns-cancel.7 index 5316e91fa..bba8bae69 100644 --- a/man/coredns-cancel.7 +++ b/man/coredns-cancel.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-CANCEL" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-CANCEL" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-chaos.7 b/man/coredns-chaos.7 index 29ecf0c05..6c30956c4 100644 --- a/man/coredns-chaos.7 +++ b/man/coredns-chaos.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-CHAOS" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-CHAOS" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-clouddns.7 b/man/coredns-clouddns.7 index 0bb32a4c5..ff71f0b22 100644 --- a/man/coredns-clouddns.7 +++ b/man/coredns-clouddns.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-CLOUDDNS" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-CLOUDDNS" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-debug.7 b/man/coredns-debug.7 index 9d5f16c85..2b14e4be1 100644 --- a/man/coredns-debug.7 +++ b/man/coredns-debug.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-DEBUG" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-DEBUG" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-dns64.7 b/man/coredns-dns64.7 index 6098a39ee..932cb1111 100644 --- a/man/coredns-dns64.7 +++ b/man/coredns-dns64.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-DNS64" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-DNS64" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-dnssec.7 b/man/coredns-dnssec.7 index 58018c6fb..ce68acace 100644 --- a/man/coredns-dnssec.7 +++ b/man/coredns-dnssec.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-DNSSEC" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-DNSSEC" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-dnstap.7 b/man/coredns-dnstap.7 index 052c8cff4..ca50930e1 100644 --- a/man/coredns-dnstap.7 +++ b/man/coredns-dnstap.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-DNSTAP" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-DNSTAP" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-erratic.7 b/man/coredns-erratic.7 index 12488ea37..ce6d1f6a9 100644 --- a/man/coredns-erratic.7 +++ b/man/coredns-erratic.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-ERRATIC" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-ERRATIC" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-errors.7 b/man/coredns-errors.7 index db0a1ad4c..51e960497 100644 --- a/man/coredns-errors.7 +++ b/man/coredns-errors.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-ERRORS" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-ERRORS" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-etcd.7 b/man/coredns-etcd.7 index 51d6fbb73..bfd910fca 100644 --- a/man/coredns-etcd.7 +++ b/man/coredns-etcd.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-ETCD" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-ETCD" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-file.7 b/man/coredns-file.7 index 7353868f2..a6a6d0e7d 100644 --- a/man/coredns-file.7 +++ b/man/coredns-file.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-FILE" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-FILE" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-forward.7 b/man/coredns-forward.7 index e5f49661e..a7527ebdd 100644 --- a/man/coredns-forward.7 +++ b/man/coredns-forward.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-FORWARD" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-FORWARD" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-grpc.7 b/man/coredns-grpc.7 index d0e07e0a0..774a845c6 100644 --- a/man/coredns-grpc.7 +++ b/man/coredns-grpc.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-GRPC" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-GRPC" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-health.7 b/man/coredns-health.7 index 2c8fcde07..4355f6786 100644 --- a/man/coredns-health.7 +++ b/man/coredns-health.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-HEALTH" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-HEALTH" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-hosts.7 b/man/coredns-hosts.7 index 34a334207..d4167b083 100644 --- a/man/coredns-hosts.7 +++ b/man/coredns-hosts.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-HOSTS" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-HOSTS" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-import.7 b/man/coredns-import.7 index 44ed60301..e896d0653 100644 --- a/man/coredns-import.7 +++ b/man/coredns-import.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-IMPORT" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-IMPORT" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-k8s_external.7 b/man/coredns-k8s_external.7 index a295499b3..9583f0bf6 100644 --- a/man/coredns-k8s_external.7 +++ b/man/coredns-k8s_external.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-K8S_EXTERNAL" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-K8S_EXTERNAL" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-kubernetes.7 b/man/coredns-kubernetes.7 index 5da35318b..df90e4a97 100644 --- a/man/coredns-kubernetes.7 +++ b/man/coredns-kubernetes.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-KUBERNETES" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-KUBERNETES" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP @@ -49,7 +49,7 @@ all the zones the plugin should be authoritative for. kubernetes [ZONES...] { endpoint URL tls CERT KEY CACERT - kubeconfig KUBECONFIG CONTEXT + kubeconfig KUBECONFIG [CONTEXT] namespaces NAMESPACE... labels EXPRESSION pods POD\-MODE @@ -70,7 +70,10 @@ If omitted, it will connect to k8s in-cluster using the cluster service account. \fB\fCtls\fR \fBCERT\fP \fBKEY\fP \fBCACERT\fP are the TLS cert, key and the CA cert file names for remote k8s connection. This option is ignored if connecting in-cluster (i.e. endpoint is not specified). .IP \(bu 4 -\fB\fCkubeconfig\fR \fBKUBECONFIG\fP \fBCONTEXT\fP authenticates the connection to a remote k8s cluster using a kubeconfig file. It supports TLS, username and password, or token-based authentication. This option is ignored if connecting in-cluster (i.e., the endpoint is not specified). +\fB\fCkubeconfig\fR \fBKUBECONFIG [CONTEXT]\fP authenticates the connection to a remote k8s cluster using a kubeconfig file. +\fB[CONTEXT]\fP is optional, if not set, then the current context specified in kubeconfig will be used. +It supports TLS, username and password, or token-based authentication. +This option is ignored if connecting in-cluster (i.e., the endpoint is not specified). .IP \(bu 4 \fB\fCnamespaces\fR \fBNAMESPACE [NAMESPACE...]\fP only exposes the k8s namespaces listed. If this option is omitted all namespaces are exposed diff --git a/man/coredns-loadbalance.7 b/man/coredns-loadbalance.7 index 527c0c4a0..150caeba7 100644 --- a/man/coredns-loadbalance.7 +++ b/man/coredns-loadbalance.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-LOADBALANCE" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-LOADBALANCE" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-local.7 b/man/coredns-local.7 index 387643c70..a7279c096 100644 --- a/man/coredns-local.7 +++ b/man/coredns-local.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-LOCAL" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-LOCAL" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-log.7 b/man/coredns-log.7 index c832bc462..8687fe77a 100644 --- a/man/coredns-log.7 +++ b/man/coredns-log.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-LOG" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-LOG" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-loop.7 b/man/coredns-loop.7 index 8d4e9ad45..b802c0cca 100644 --- a/man/coredns-loop.7 +++ b/man/coredns-loop.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-LOOP" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-LOOP" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-metadata.7 b/man/coredns-metadata.7 index 27e62e9dd..0fe551522 100644 --- a/man/coredns-metadata.7 +++ b/man/coredns-metadata.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-METADATA" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-METADATA" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-metrics.7 b/man/coredns-metrics.7 index 0f107ed2a..812ea489f 100644 --- a/man/coredns-metrics.7 +++ b/man/coredns-metrics.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-METRICS" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-METRICS" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-nsid.7 b/man/coredns-nsid.7 index db151997d..c7a74922a 100644 --- a/man/coredns-nsid.7 +++ b/man/coredns-nsid.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-NSID" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-NSID" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-pprof.7 b/man/coredns-pprof.7 index 6dc5da9c8..5dfa9859d 100644 --- a/man/coredns-pprof.7 +++ b/man/coredns-pprof.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-PPROF" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-PPROF" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-ready.7 b/man/coredns-ready.7 index 905106946..855b05e20 100644 --- a/man/coredns-ready.7 +++ b/man/coredns-ready.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-READY" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-READY" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-reload.7 b/man/coredns-reload.7 index 4a3af3bdc..39d924168 100644 --- a/man/coredns-reload.7 +++ b/man/coredns-reload.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-RELOAD" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-RELOAD" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-rewrite.7 b/man/coredns-rewrite.7 index 6f752ae85..8e22ee0d9 100644 --- a/man/coredns-rewrite.7 +++ b/man/coredns-rewrite.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-REWRITE" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-REWRITE" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-root.7 b/man/coredns-root.7 index 6b1ed32c7..d68c252a4 100644 --- a/man/coredns-root.7 +++ b/man/coredns-root.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-ROOT" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-ROOT" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-route53.7 b/man/coredns-route53.7 index 9f984f56d..0aeb4f259 100644 --- a/man/coredns-route53.7 +++ b/man/coredns-route53.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-ROUTE53" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-ROUTE53" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-secondary.7 b/man/coredns-secondary.7 index b9f304b7a..23aeded42 100644 --- a/man/coredns-secondary.7 +++ b/man/coredns-secondary.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-SECONDARY" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-SECONDARY" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-sign.7 b/man/coredns-sign.7 index 0f7630bf9..da6f3e620 100644 --- a/man/coredns-sign.7 +++ b/man/coredns-sign.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-SIGN" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-SIGN" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-template.7 b/man/coredns-template.7 index 3b72d010e..c8a4d6342 100644 --- a/man/coredns-template.7 +++ b/man/coredns-template.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-TEMPLATE" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-TEMPLATE" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-tls.7 b/man/coredns-tls.7 index 5fc5ab161..12852a91f 100644 --- a/man/coredns-tls.7 +++ b/man/coredns-tls.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-TLS" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-TLS" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-trace.7 b/man/coredns-trace.7 index 706e721e2..e4303d7c1 100644 --- a/man/coredns-trace.7 +++ b/man/coredns-trace.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-TRACE" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-TRACE" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-transfer.7 b/man/coredns-transfer.7 index f2e9656a5..f697db859 100644 --- a/man/coredns-transfer.7 +++ b/man/coredns-transfer.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-TRANSFER" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-TRANSFER" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns-whoami.7 b/man/coredns-whoami.7 index 942db89da..3ff12c99d 100644 --- a/man/coredns-whoami.7 +++ b/man/coredns-whoami.7 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS-WHOAMI" 7 "January 2021" "CoreDNS" "CoreDNS Plugins" +.TH "COREDNS-WHOAMI" 7 "February 2021" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP diff --git a/man/coredns.1 b/man/coredns.1 index bb341a31f..e597fd425 100644 --- a/man/coredns.1 +++ b/man/coredns.1 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREDNS" 1 "January 2021" "CoreDNS" "CoreDNS" +.TH "COREDNS" 1 "February 2021" "CoreDNS" "CoreDNS" .SH "COREDNS" .PP diff --git a/man/corefile.5 b/man/corefile.5 index 147dca426..af5140fb6 100644 --- a/man/corefile.5 +++ b/man/corefile.5 @@ -1,5 +1,5 @@ .\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "COREFILE" 5 "January 2021" "CoreDNS" "CoreDNS" +.TH "COREFILE" 5 "February 2021" "CoreDNS" "CoreDNS" .SH "NAME" .PP