Don't sync old deb repos + add Ubuntu wily

This commit is contained in:
Yorhel 2016-03-05 08:06:23 +01:00
parent 8808b538f5
commit f7f79ad80d
2 changed files with 12 additions and 4 deletions

View file

@ -150,7 +150,8 @@ INSERT INTO systems (id, name, release, short, relorder) VALUES
(88, 'Ubuntu', '14.04', 'ubuntu-trusty', 19),
(89, 'Ubuntu', '14.10', 'ubuntu-utopic', 20),
(90, 'Ubuntu', '15.04', 'ubuntu-vivid', 21),
(91, 'Debian', '8.0', 'debian-jessie', 12);
(91, 'Debian', '8.0', 'debian-jessie', 12),
(92, 'Ubuntu', '15.10', 'ubuntu-wily', 22);
-- Removes any path components and compression extensions from the filename.
CREATE OR REPLACE FUNCTION basename_from_filename(fn text) RETURNS text AS $$

View file

@ -283,6 +283,12 @@ ubuntu_vivid() {
syncrepo 90 "http://nl.archive.ubuntu.com/ubuntu/" "vivid-security" "main multiverse restricted universe"
}
ubuntu_wily() {
syncrepo 92 "http://nl.archive.ubuntu.com/ubuntu/" "wily" "main multiverse restricted universe"
syncrepo 92 "http://nl.archive.ubuntu.com/ubuntu/" "wily-updates" "main multiverse restricted universe"
syncrepo 92 "http://nl.archive.ubuntu.com/ubuntu/" "wily-security" "main multiverse restricted universe"
}
ubuntu_old() {
ubuntu_warty
ubuntu_hoary
@ -302,13 +308,14 @@ ubuntu_old() {
ubuntu_raring
ubuntu_quantal
ubuntu_saucy
ubuntu_utopic
ubuntu_vivid
}
ubuntu_active() {
ubuntu_precise # until 2017-04
ubuntu_trusty # until 2019-04
ubuntu_utopic # until 2015-07
ubuntu_vivid # until 2016-01
ubuntu_wily # until 2016-07
}
ubuntu() {
@ -393,10 +400,10 @@ debian_old() {
debian_sarge
debian_etch
debian_lenny
debian_squeeze
}
debian_active() {
debian_squeeze
debian_wheezy
debian_jessie
}