diff options
author | onefang | 2020-01-01 01:17:53 +1000 |
---|---|---|
committer | onefang | 2020-01-01 01:17:53 +1000 |
commit | 9733a3b8cf78115bfdca31e71ac2e4de5d80dda8 (patch) | |
tree | d43e18ea622ff79290f05d68594f804b3428a56b | |
parent | Move the graphs to the DNS and logs area, coz the graphs are per IP. (diff) | |
download | apt-panopticon-9733a3b8cf78115bfdca31e71ac2e4de5d80dda8.zip apt-panopticon-9733a3b8cf78115bfdca31e71ac2e4de5d80dda8.tar.gz apt-panopticon-9733a3b8cf78115bfdca31e71ac2e4de5d80dda8.tar.bz2 apt-panopticon-9733a3b8cf78115bfdca31e71ac2e4de5d80dda8.tar.xz |
Silly typo be gone.
-rwxr-xr-x | apt-panopticon.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-panopticon.lua b/apt-panopticon.lua index 2237232..70a9b83 100755 --- a/apt-panopticon.lua +++ b/apt-panopticon.lua | |||
@@ -755,12 +755,12 @@ local parsePackages = function(host) | |||
755 | 'results/' .. APT.options.referenceSite.value .. '/merged/dists/' .. n .. dir .. 'Packages_parsed-sorted ' .. | 755 | 'results/' .. APT.options.referenceSite.value .. '/merged/dists/' .. n .. dir .. 'Packages_parsed-sorted ' .. |
756 | ' | grep -E "^\\+" | grep -Ev "^\\+\\+\\+|^---" >>results/NEW_' .. list.out .. '_TMP_' .. n .. '.txt') | 756 | ' | grep -E "^\\+" | grep -Ev "^\\+\\+\\+|^---" >>results/NEW_' .. list.out .. '_TMP_' .. n .. '.txt') |
757 | for i, s in pairs(referenceDebs) do | 757 | for i, s in pairs(referenceDebs) do |
758 | if 0 < Apt.exe('grep "' .. s:sub(8, -1) .. '" results/OLD_' .. list.out .. '_' .. n .. '.txt'):Do().status then | 758 | if 0 < APT.exe('grep "' .. s:sub(8, -1) .. '" results/OLD_' .. list.out .. '_' .. n .. '.txt'):Do().status then |
759 | print('Reference package is out of date - ' .. s) | 759 | print('Reference package is out of date - ' .. s) |
760 | end | 760 | end |
761 | end | 761 | end |
762 | for i, s in pairs(referenceDevs) do | 762 | for i, s in pairs(referenceDevs) do |
763 | if 0 < Apt.exe('grep "' .. s:sub(8, -1) .. '" results/OLD_' .. list.out .. '_' .. n .. '.txt'):Do().status then | 763 | if 0 < APT.exe('grep "' .. s:sub(8, -1) .. '" results/OLD_' .. list.out .. '_' .. n .. '.txt'):Do().status then |
764 | print('Reference package is out of date - ' .. s) | 764 | print('Reference package is out of date - ' .. s) |
765 | end | 765 | end |
766 | end | 766 | end |