Split declaration and assignment of random_url

Signed-off-by: Mcat12 <newtoncat12@yahoo.com>
pull/2246/head
Mcat12 6 years ago
parent e71492a2b3
commit 868948509a
No known key found for this signature in database
GPG Key ID: ABB8FC9789AF524D

@ -780,7 +780,8 @@ dig_at() {
# Find a random blocked url that has not been whitelisted.
# This helps emulate queries to different domains that a user might query
# It will also give extra assurance that Pi-hole is correctly resolving and blocking domains
local random_url=$(shuf -n 1 "${PIHOLE_BLOCKLIST_FILE}")
local random_url
random_url=$(shuf -n 1 "${PIHOLE_BLOCKLIST_FILE}")
# First, do a dig on localhost to see if Pi-hole can use itself to block a domain
if local_dig=$(dig +tries=1 +time=2 -"${protocol}" "${random_url}" @${local_address} +short "${record_type}"); then

Loading…
Cancel
Save