From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arne Fitzenreiter To: development@lists.ipfire.org Subject: [PATCH 3/4] unbound: fix typo at safesearch for googe Date: Sun, 01 Mar 2020 19:41:15 +0100 Message-ID: <20200301184116.15686-3-arne_f@ipfire.org> In-Reply-To: <20200301184116.15686-1-arne_f@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5200138571520781437==" List-Id: --===============5200138571520781437== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Signed-off-by: Arne Fitzenreiter --- src/initscripts/system/unbound | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/initscripts/system/unbound b/src/initscripts/system/unbound index 7bf2ffc2c..b3185feab 100644 --- a/src/initscripts/system/unbound +++ b/src/initscripts/system/unbound @@ -534,7 +534,7 @@ update_safe_search() { for domain in ${google_tlds[@]}; do unbound-control local_zone "${domain}" transparent >/dev/null for address in ${addresses}; do - unbound-control local_data: "www.${domain} ${LOCAL_TTL} IN A ${address}" + unbound-control local_data "www.${domain} ${LOCAL_TTL} IN A ${address}" done >/dev/null done -- 2.17.1 --===============5200138571520781437==--