diff options
author | onefang | 2019-12-23 18:09:59 +1000 |
---|---|---|
committer | onefang | 2019-12-23 18:09:59 +1000 |
commit | 8ca7361dd3da968250dbc299beb690b258181c04 (patch) | |
tree | 06d1cfafe7048d8de7ec7faa8189675c27392922 | |
parent | Send any arguments to reports. (diff) | |
download | apt-panopticon-8ca7361dd3da968250dbc299beb690b258181c04.zip apt-panopticon-8ca7361dd3da968250dbc299beb690b258181c04.tar.gz apt-panopticon-8ca7361dd3da968250dbc299beb690b258181c04.tar.bz2 apt-panopticon-8ca7361dd3da968250dbc299beb690b258181c04.tar.xz |
TODO++
-rwxr-xr-x | apt-panopticon.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apt-panopticon.lua b/apt-panopticon.lua index 1212ba1..8f8a363 100755 --- a/apt-panopticon.lua +++ b/apt-panopticon.lua | |||
@@ -760,6 +760,9 @@ local parseRelease = function(host) | |||
760 | end | 760 | end |
761 | 761 | ||
762 | -- TODO - if it's not Integrity and not reference, then just do a HEAD check and compare file times? | 762 | -- TODO - if it's not Integrity and not reference, then just do a HEAD check and compare file times? |
763 | -- TODO - like we do with debs, pick just the smallest Packages.xz that has changed. | ||
764 | -- Though we are sorting Release by name, so we can do the diff with the one from results_old, so we'll need to sort by size to. | ||
765 | -- pkgmaster still needs to download all the changed Packages.xz files though. | ||
763 | if APT.testing("Integrity") or (APT.options.referenceSite.value == host) then | 766 | if APT.testing("Integrity") or (APT.options.referenceSite.value == host) then |
764 | local dfile, e = io.open(outFile, "r") | 767 | local dfile, e = io.open(outFile, "r") |
765 | if nil == dfile then W("opening " .. outFile .. " file - " .. e) else | 768 | if nil == dfile then W("opening " .. outFile .. " file - " .. e) else |