* [PATCH 2/3] Unbound: do not generate PTR if the user requested not to, do so
@ 2019-04-08 18:04 Peter Müller
2019-04-15 9:50 ` Michael Tremer
0 siblings, 1 reply; 2+ messages in thread
From: Peter Müller @ 2019-04-08 18:04 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1161 bytes --]
Partially fixes #12030
Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
src/initscripts/system/unbound | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/src/initscripts/system/unbound b/src/initscripts/system/unbound
index af9bcef73..107f80477 100644
--- a/src/initscripts/system/unbound
+++ b/src/initscripts/system/unbound
@@ -172,9 +172,9 @@ own_hostname() {
}
update_hosts() {
- local enabled address hostname domainname
+ local enabled address hostname domainname generateptr
- while IFS="," read -r enabled address hostname domainname; do
+ while IFS="," read -r enabled address hostname domainname generateptr; do
[ "${enabled}" = "on" ] || continue
# Build FQDN
@@ -185,6 +185,9 @@ update_hosts() {
# Skip reverse resolution if the address equals the GREEN address
[ "${address}" = "${GREEN_ADDRESS}" ] && continue
+ # Skip reverse resolution if user requested not to do so
+ [ "${generateptr}" = "off" ] && continue
+
# Add RDNS
address=$(ip_address_revptr ${address})
unbound-control -q local_data "${address} ${LOCAL_TTL} IN PTR ${fqdn}"
--
2.16.4
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH 2/3] Unbound: do not generate PTR if the user requested not to, do so
2019-04-08 18:04 [PATCH 2/3] Unbound: do not generate PTR if the user requested not to, do so Peter Müller
@ 2019-04-15 9:50 ` Michael Tremer
0 siblings, 0 replies; 2+ messages in thread
From: Michael Tremer @ 2019-04-15 9:50 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1460 bytes --]
Hi,
> On 8 Apr 2019, at 19:04, Peter Müller <peter.mueller(a)ipfire.org> wrote:
>
> Partially fixes #12030
>
> Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
> ---
> src/initscripts/system/unbound | 7 +++++--
> 1 file changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/src/initscripts/system/unbound b/src/initscripts/system/unbound
> index af9bcef73..107f80477 100644
> --- a/src/initscripts/system/unbound
> +++ b/src/initscripts/system/unbound
> @@ -172,9 +172,9 @@ own_hostname() {
> }
>
> update_hosts() {
> - local enabled address hostname domainname
> + local enabled address hostname domainname generateptr
>
> - while IFS="," read -r enabled address hostname domainname; do
> + while IFS="," read -r enabled address hostname domainname generateptr; do
> [ "${enabled}" = "on" ] || continue
>
> # Build FQDN
> @@ -185,6 +185,9 @@ update_hosts() {
> # Skip reverse resolution if the address equals the GREEN address
> [ "${address}" = "${GREEN_ADDRESS}" ] && continue
>
> + # Skip reverse resolution if user requested not to do so
> + [ "${generateptr}" = "off" ] && continue
You indented with spaces here when the whole file uses tabs. I changed that when I merged the patch.
-Michael
> +
> # Add RDNS
> address=$(ip_address_revptr ${address})
> unbound-control -q local_data "${address} ${LOCAL_TTL} IN PTR ${fqdn}"
> --
> 2.16.4
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-04-15 9:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-08 18:04 [PATCH 2/3] Unbound: do not generate PTR if the user requested not to, do so Peter Müller
2019-04-15 9:50 ` Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox