From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter =?utf-8?q?M=C3=BCller?= To: development@lists.ipfire.org Subject: [PATCH 2/3] Unbound: do not generate PTR if the user requested not to, do so Date: Mon, 08 Apr 2019 18:04:00 +0000 Message-ID: <9d755e0c-eb20-9ad9-9cb5-9ee38f5cc1ec@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7394323425772526996==" List-Id: --===============7394323425772526996== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Partially fixes #12030 Signed-off-by: Peter Müller --- 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 --===============7394323425772526996==--