A Lua script to check the health of Devuan Linux package mirrors. The master repo is at https://sledjhamr.org/cgit/apt-panopticon/ and the master issues tracker is at https://sledjhamr.org/mantisbt/project_page.php?project_id=13
https://sledjhamr.org/cgit/apt-panopticon/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
495 B
23 lines
495 B
#!/usr/bin/env luajit
|
|
|
|
local APT = require 'apt-panopticommon'
|
|
local D = APT.D
|
|
local I = APT.I
|
|
local T = APT.T
|
|
local W = APT.W
|
|
local E = APT.E
|
|
local C = APT.C
|
|
local arg, sendArgs = APT.parseArgs({...})
|
|
|
|
|
|
APT.mirrors = loadfile("results/mirrors.lua")()
|
|
APT.html = false
|
|
for k, v in APT.orderedPairs(APT.mirrors) do
|
|
APT.doRRD('results', k, v)
|
|
end
|
|
|
|
APT.debians = loadfile("results/debians.lua")()
|
|
APT.html = false
|
|
for k, v in APT.orderedPairs(APT.debians) do
|
|
APT.doRRD('results', k, v)
|
|
end
|
|
|