diff options
author | onefang | 2019-11-26 01:04:19 +1000 |
---|---|---|
committer | onefang | 2019-11-26 01:04:19 +1000 |
commit | b9ab9b2bbd7a8134f04bf7716de743ca938cb13e (patch) | |
tree | bdf2d4ef8c578c403e33bffc09af90616f011436 | |
parent | Basic integrity check - GPG verify Release files. (diff) | |
download | apt-panopticon-b9ab9b2bbd7a8134f04bf7716de743ca938cb13e.zip apt-panopticon-b9ab9b2bbd7a8134f04bf7716de743ca938cb13e.tar.gz apt-panopticon-b9ab9b2bbd7a8134f04bf7716de743ca938cb13e.tar.bz2 apt-panopticon-b9ab9b2bbd7a8134f04bf7716de743ca938cb13e.tar.xz |
Report Integrity results.
-rwxr-xr-x | apt-panopticon-report-email.lua | 2 | ||||
-rwxr-xr-x | apt-panopticon-report-web.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apt-panopticon-report-email.lua b/apt-panopticon-report-email.lua index 136ac56..d36aab0 100755 --- a/apt-panopticon-report-email.lua +++ b/apt-panopticon-report-email.lua | |||
@@ -195,7 +195,7 @@ if nil == file then C("opening mirrors file - " .. e) else | |||
195 | local dns = "[skip]" | 195 | local dns = "[skip]" |
196 | local protocol = status(k, results, "Protocol") | 196 | local protocol = status(k, results, "Protocol") |
197 | local sanity = "[skip]" | 197 | local sanity = "[skip]" |
198 | local integrity = "[skip]" | 198 | local integrity = status(k, results, "Integrity") |
199 | local updated = "[skip]" | 199 | local updated = "[skip]" |
200 | file:write( " http: " .. http .. " https: " .. https .. " DNS-RR: " .. dns .. " Protocol: " .. protocol .. "\n" .. | 200 | file:write( " http: " .. http .. " https: " .. https .. " DNS-RR: " .. dns .. " Protocol: " .. protocol .. "\n" .. |
201 | " URL-sanity: " .. sanity .. " Integrity: " .. integrity .. " Updated: " .. updated .. "\n") | 201 | " URL-sanity: " .. sanity .. " Integrity: " .. integrity .. " Updated: " .. updated .. "\n") |
diff --git a/apt-panopticon-report-web.lua b/apt-panopticon-report-web.lua index ebc0e66..4064ec1 100755 --- a/apt-panopticon-report-web.lua +++ b/apt-panopticon-report-web.lua | |||
@@ -277,7 +277,7 @@ if nil == file then C("opening mirrors file - " .. e) else | |||
277 | local dns = "" | 277 | local dns = "" |
278 | local protocol = status(k, results, "Protocol") | 278 | local protocol = status(k, results, "Protocol") |
279 | local sanity = "[<font color='gray'><b>skip</b></font>]" | 279 | local sanity = "[<font color='gray'><b>skip</b></font>]" |
280 | local integrity = "[<font color='gray'><b>skip</b></font>]" | 280 | local integrity = status(k, results, "Integrity") |
281 | local updated = "[<font color='gray'><b>skip</b></font>]" | 281 | local updated = "[<font color='gray'><b>skip</b></font>]" |
282 | 282 | ||
283 | -- DNS-RR test. | 283 | -- DNS-RR test. |