diff options
-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 |