diff options
author | onefang | 2021-11-21 03:38:14 +1000 |
---|---|---|
committer | onefang | 2021-11-21 03:38:14 +1000 |
commit | 0197902953556d46f4c67f7d0ad1a31bb2ea116a (patch) | |
tree | ef72528a18e8f4dc2abc8fb1914f895741fc20ea | |
parent | Don't continue testing mirrors with no IP addresses. (diff) | |
download | apt-panopticon-0197902953556d46f4c67f7d0ad1a31bb2ea116a.zip apt-panopticon-0197902953556d46f4c67f7d0ad1a31bb2ea116a.tar.gz apt-panopticon-0197902953556d46f4c67f7d0ad1a31bb2ea116a.tar.bz2 apt-panopticon-0197902953556d46f4c67f7d0ad1a31bb2ea116a.tar.xz |
Don't crash if a DNS-RR mirror fails to resolve.
Diffstat (limited to '')
-rwxr-xr-x | apt-panopticon.lua | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/apt-panopticon.lua b/apt-panopticon.lua index 06a051e..a524260 100755 --- a/apt-panopticon.lua +++ b/apt-panopticon.lua | |||
@@ -199,24 +199,26 @@ gatherIPs = function (host) | |||
199 | gatherIPs(m.FQDN) | 199 | gatherIPs(m.FQDN) |
200 | IP[host][m.FQDN] = IP[m.FQDN] | 200 | IP[host][m.FQDN] = IP[m.FQDN] |
201 | -- Strip them out so we don't test them twice. | 201 | -- Strip them out so we don't test them twice. |
202 | for l, n in pairs(IP[m.FQDN]) do | 202 | if nil ~= IP[m.FQDN] then |
203 | if type(n) == 'table' then | 203 | for l, n in pairs(IP[m.FQDN]) do |
204 | for h, p in pairs(n) do | 204 | if type(n) == 'table' then |
205 | for h, p in pairs(n) do | ||
206 | for j, o in pairs(IP[host]['deb.roundr.devuan.org']) do | ||
207 | if h == j then IP[host][m.FQDN][l][h] = nil end | ||
208 | end | ||
209 | o = 0 | ||
210 | for j in pairs(IP[host][m.FQDN][l]) do o = o + 1 end | ||
211 | if 0 == o then IP[host][m.FQDN][l] = nil end | ||
212 | end | ||
213 | else | ||
205 | for j, o in pairs(IP[host]['deb.roundr.devuan.org']) do | 214 | for j, o in pairs(IP[host]['deb.roundr.devuan.org']) do |
206 | if h == j then IP[host][m.FQDN][l][h] = nil end | 215 | if l == j then IP[host][m.FQDN][l] = nil end |
207 | end | 216 | end |
208 | o = 0 | ||
209 | for j in pairs(IP[host][m.FQDN][l]) do o = o + 1 end | ||
210 | if 0 == o then IP[host][m.FQDN][l] = nil end | ||
211 | end | ||
212 | else | ||
213 | for j, o in pairs(IP[host]['deb.roundr.devuan.org']) do | ||
214 | if l == j then IP[host][m.FQDN][l] = nil end | ||
215 | end | 217 | end |
218 | o = 0 | ||
219 | for j in pairs(IP[host][m.FQDN]) do o = o + 1 end | ||
220 | if 0 == o then IP[host][m.FQDN] = nil end | ||
216 | end | 221 | end |
217 | o = 0 | ||
218 | for j in pairs(IP[host][m.FQDN]) do o = o + 1 end | ||
219 | if 0 == o then IP[host][m.FQDN] = nil end | ||
220 | end | 222 | end |
221 | end | 223 | end |
222 | end | 224 | end |