diff options
author | onefang | 2020-07-01 19:23:31 +1000 |
---|---|---|
committer | onefang | 2020-07-01 19:23:31 +1000 |
commit | 09fb177855a8065e9f945af591dd4b0132600737 (patch) | |
tree | a9de5a1cc2e5c4680a7a4f45b614d401bae81b87 | |
parent | Migrate to gitea.devuan.dev for the Devuan repo. (diff) | |
download | apt-panopticon-09fb177855a8065e9f945af591dd4b0132600737.zip apt-panopticon-09fb177855a8065e9f945af591dd4b0132600737.tar.gz apt-panopticon-09fb177855a8065e9f945af591dd4b0132600737.tar.bz2 apt-panopticon-09fb177855a8065e9f945af591dd4b0132600737.tar.xz |
Remove jessie (it's been archived), promote beowulf (new stable), add chimaera (new testing).
-rw-r--r-- | apt-panopticommon.lua | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/apt-panopticommon.lua b/apt-panopticommon.lua index 503c131..0c06185 100644 --- a/apt-panopticommon.lua +++ b/apt-panopticommon.lua | |||
@@ -5,18 +5,16 @@ APT.rrd = require 'rrd' | |||
5 | 5 | ||
6 | APT.protocols = {"ftp", "http", "https", "rsync"} | 6 | APT.protocols = {"ftp", "http", "https", "rsync"} |
7 | APT.tests = {'raw', 'Integrity', 'Protocol', 'Redirects', 'Updated', 'URLSanity', 'Speed'} | 7 | APT.tests = {'raw', 'Integrity', 'Protocol', 'Redirects', 'Updated', 'URLSanity', 'Speed'} |
8 | APT.releases = {"jessie", "ascii", "beowulf", "ceres"} | 8 | APT.releases = {"ascii", "beowulf", "chimaera", "ceres"} |
9 | APT.subRels = {'backports', 'proposed-updates', 'security', 'updates'} | 9 | APT.subRels = {'backports', 'proposed-updates', 'security', 'updates'} |
10 | APT.notExist = | 10 | APT.notExist = |
11 | { | 11 | { |
12 | 'jessie-backports', -- No longer existing as this is old stable. | 12 | 'chimaera-backports', |
13 | 'jessie-proposed-updates', | 13 | 'chimaera-security', |
14 | 'jessie-updates', | ||
15 | 'beowulf-backports', -- Wont exist until Beowulf goes live. | ||
16 | 'ceres-backports', -- These will never exist, it's our code name for the testing suite. | 14 | 'ceres-backports', -- These will never exist, it's our code name for the testing suite. |
17 | 'ceres-proposed-updates', | 15 | 'ceres-proposed-updates', |
18 | 'ceres-updates', | 16 | 'ceres-updates', |
19 | "ceres-security", | 17 | 'ceres-security', |
20 | } | 18 | } |
21 | 19 | ||
22 | APT.verbosity = -1 | 20 | APT.verbosity = -1 |