diff options
author | onefang | 2019-11-26 01:00:47 +1000 |
---|---|---|
committer | onefang | 2019-11-26 01:00:47 +1000 |
commit | 13fe144d16acab4e00589b3fb2ba98652098feba (patch) | |
tree | 8e7463b18fc0fc1ebd0639cb91abc82182989d2f | |
parent | Curl based downloader. (diff) | |
download | apt-panopticon-13fe144d16acab4e00589b3fb2ba98652098feba.zip apt-panopticon-13fe144d16acab4e00589b3fb2ba98652098feba.tar.gz apt-panopticon-13fe144d16acab4e00589b3fb2ba98652098feba.tar.bz2 apt-panopticon-13fe144d16acab4e00589b3fb2ba98652098feba.tar.xz |
Cut down the abount of meta files downloaded automatically
-rwxr-xr-x | apt-panopticon.lua | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/apt-panopticon.lua b/apt-panopticon.lua index 26ef4ac..59a65d2 100755 --- a/apt-panopticon.lua +++ b/apt-panopticon.lua | |||
@@ -74,16 +74,16 @@ local releases = {"jessie", "ascii", "beowulf", "ceres"} | |||
74 | local releaseFiles = | 74 | local releaseFiles = |
75 | { | 75 | { |
76 | -- Release file. | 76 | -- Release file. |
77 | "/Release", | 77 | "/Release", -- 3.7 MB |
78 | "/InRelease", | 78 | -- "/InRelease", -- 3.7 MB |
79 | "/main/binary-all/Packages.gz", | 79 | -- "/main/binary-all/Packages.xz", -- 2.6 GB for all that changed recently. |
80 | -- Contents files. | 80 | -- Contents files. -- 3.3 GB |
81 | "/main/Contents-all.gz", | 81 | -- "/main/Contents-all.xz", |
82 | "/main/Contents-amd64.gz", | 82 | -- "/main/Contents-amd64.xz", |
83 | "/main/Contents-arm64.gz", | 83 | -- "/main/Contents-arm64.xz", |
84 | "-security/main/Contents-all.gz", | 84 | -- "-security/main/Contents-all.xz", |
85 | "-security/main/Contents-amd64.gz", | 85 | -- "-security/main/Contents-amd64.xz", |
86 | "-security/main/Contents-arm64.gz", | 86 | -- "-security/main/Contents-arm64.xz", |
87 | } | 87 | } |
88 | local notExist = | 88 | local notExist = |
89 | { | 89 | { |