mirror of
https://github.com/pi-hole/pi-hole.git
synced 2025-04-03 14:10:15 +00:00
adds trailing slash to domain
Signed-off-by: pvogt09 <50047961+pvogt09@users.noreply.github.com>
This commit is contained in:
parent
28ffa7522b
commit
2c0a08a261
1 changed files with 2 additions and 2 deletions
|
@ -625,11 +625,11 @@ def test_installPihole_fresh_install_readableBlockpage(Pihole, test_webpage):
|
|||
digcommand = r"dig A +short {} @127.0.0.1"
|
||||
pagecontent = 'curl --verbose -L "{}"'
|
||||
for page in piholeWebpage:
|
||||
testpage = "http://" + page + "/admin"
|
||||
testpage = "http://" + page + "/admin/"
|
||||
resolvesuccess = True
|
||||
if is_ip(page) is False:
|
||||
dig = Pihole.run(digcommand.format(page))
|
||||
testpage = "http://" + dig.stdout.strip() + "/admin"
|
||||
testpage = "http://" + dig.stdout.strip() + "/admin/"
|
||||
resolvesuccess = dig.rc == 0
|
||||
if resolvesuccess or pihole_is_ns:
|
||||
# check HTTP status of blockpage
|
||||
|
|
Loading…
Add table
Reference in a new issue