aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/apt-panopticon.lua
diff options
context:
space:
mode:
authoronefang2019-12-12 20:24:29 +1000
committeronefang2019-12-12 20:24:29 +1000
commita1313dd07fa9cb7c7c28c617e628ef8b9f44ae37 (patch)
tree2df838040b6de3a8052bf9ac54fbdb22e61fd084 /apt-panopticon.lua
parentTime how long it takes. (diff)
downloadapt-panopticon-a1313dd07fa9cb7c7c28c617e628ef8b9f44ae37.zip
apt-panopticon-a1313dd07fa9cb7c7c28c617e628ef8b9f44ae37.tar.gz
apt-panopticon-a1313dd07fa9cb7c7c28c617e628ef8b9f44ae37.tar.bz2
apt-panopticon-a1313dd07fa9cb7c7c28c617e628ef8b9f44ae37.tar.xz
Comment++
Diffstat (limited to '')
-rwxr-xr-xapt-panopticon.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/apt-panopticon.lua b/apt-panopticon.lua
index d3cb7be..62acbf25 100755
--- a/apt-panopticon.lua
+++ b/apt-panopticon.lua
@@ -175,6 +175,9 @@ local IP = {}
175gatherIPs = function (host) 175gatherIPs = function (host)
176 if nil == IP[host] then 176 if nil == IP[host] then
177 local IPs 177 local IPs
178 -- Takes about 30 seconds to look up the lot.
179 -- I tested using dig's -f option, it didn't seem much faster.
180 -- The sort -r assumes that deb.devuan.org is the first alphabetically.
178 local dig = io.popen('dig +keepopen +noall +nottlid +answer ' .. host .. ' A ' .. host .. ' AAAA ' .. host .. ' CNAME ' .. host .. ' SRV | sort -r | uniq') 181 local dig = io.popen('dig +keepopen +noall +nottlid +answer ' .. host .. ' A ' .. host .. ' AAAA ' .. host .. ' CNAME ' .. host .. ' SRV | sort -r | uniq')
179 repeat 182 repeat
180 IPs = dig:read("*l") 183 IPs = dig:read("*l")