aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/apt-panopticon.lua
diff options
context:
space:
mode:
authoronefang2019-12-31 00:22:28 +1000
committeronefang2019-12-31 00:22:28 +1000
commitabad73ffc631e7eed6f1fbd4a8f672fa05333578 (patch)
tree1b4b3974c7a466bfbf02b8358ff25975b2a55df5 /apt-panopticon.lua
parentRearrange the status and STATUS checks in HEAD tests. (diff)
downloadapt-panopticon-abad73ffc631e7eed6f1fbd4a8f672fa05333578.zip
apt-panopticon-abad73ffc631e7eed6f1fbd4a8f672fa05333578.tar.gz
apt-panopticon-abad73ffc631e7eed6f1fbd4a8f672fa05333578.tar.bz2
apt-panopticon-abad73ffc631e7eed6f1fbd4a8f672fa05333578.tar.xz
Complain about not finding a status code.
Diffstat (limited to 'apt-panopticon.lua')
-rwxr-xr-xapt-panopticon.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/apt-panopticon.lua b/apt-panopticon.lua
index 093d3ff..d4bba5e 100755
--- a/apt-panopticon.lua
+++ b/apt-panopticon.lua
@@ -334,6 +334,11 @@ checkHEAD = function (host, URL, r, retry, sanity)
334 location = line:sub(11, -2) 334 location = line:sub(11, -2)
335 end 335 end
336 end 336 end
337 if '???' == code then
338 W(spcd .. spcd .. 'Could not find response code. ' .. APT.lnk(URL), PU.scheme, sanity, host)
339 else
340 os.execute('rm -f results/STATUS_' .. fname .. ' 2>/dev/null')
341 end
337 end 342 end
338 if ("4" == tostring(code):sub(1, 1)) or ("5" == tostring(code):sub(1, 1)) then 343 if ("4" == tostring(code):sub(1, 1)) or ("5" == tostring(code):sub(1, 1)) then
339 E(spcd .. spcd .. code .. " " .. cstr .. ". " .. check .. " " .. APT.lnk(URL), PU.scheme, sanity, host) 344 E(spcd .. spcd .. code .. " " .. cstr .. ". " .. check .. " " .. APT.lnk(URL), PU.scheme, sanity, host)