use only first result from dig

Signed-off-by: pvogt09 <50047961+pvogt09@users.noreply.github.com>
This commit is contained in:
pvogt09 2021-07-19 18:28:04 +02:00
parent 2c0a08a261
commit 023f243a2a

View file

@ -622,7 +622,7 @@ def test_installPihole_fresh_install_readableBlockpage(Pihole, test_webpage):
'curl -s --head "{}" | ' +
'head -n 1 | ' +
'grep "HTTP/1.[01] [23].." > /dev/null')
digcommand = r"dig A +short {} @127.0.0.1"
digcommand = r"dig A +short {} @127.0.0.1 | head -n 1"
pagecontent = 'curl --verbose -L "{}"'
for page in piholeWebpage:
testpage = "http://" + page + "/admin/"