Add Ubuntu Xenial
This commit is contained in:
parent
0c6964d0e3
commit
26aefaebcd
2 changed files with 9 additions and 1 deletions
|
|
@ -150,7 +150,8 @@ INSERT INTO systems (id, name, release, short, relorder) VALUES
|
||||||
(89, 'Ubuntu', '14.10', 'ubuntu-utopic', 20),
|
(89, 'Ubuntu', '14.10', 'ubuntu-utopic', 20),
|
||||||
(90, 'Ubuntu', '15.04', 'ubuntu-vivid', 21),
|
(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);
|
(92, 'Ubuntu', '15.10', 'ubuntu-wily', 22),
|
||||||
|
(93, 'Ubuntu', '16.04', 'ubuntu-xenial', 23);
|
||||||
|
|
||||||
-- Removes any path components and compression extensions from the filename.
|
-- Removes any path components and compression extensions from the filename.
|
||||||
CREATE OR REPLACE FUNCTION basename_from_filename(fn text) RETURNS text AS $$
|
CREATE OR REPLACE FUNCTION basename_from_filename(fn text) RETURNS text AS $$
|
||||||
|
|
|
||||||
|
|
@ -289,6 +289,12 @@ ubuntu_wily() {
|
||||||
syncrepo 92 "http://nl.archive.ubuntu.com/ubuntu/" "wily-security" "main multiverse restricted universe"
|
syncrepo 92 "http://nl.archive.ubuntu.com/ubuntu/" "wily-security" "main multiverse restricted universe"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ubuntu_xenial() {
|
||||||
|
syncrepo 93 "http://nl.archive.ubuntu.com/ubuntu/" "xenial" "main multiverse restricted universe"
|
||||||
|
syncrepo 93 "http://nl.archive.ubuntu.com/ubuntu/" "xenial-updates" "main multiverse restricted universe"
|
||||||
|
syncrepo 93 "http://nl.archive.ubuntu.com/ubuntu/" "xenial-security" "main multiverse restricted universe"
|
||||||
|
}
|
||||||
|
|
||||||
ubuntu_old() {
|
ubuntu_old() {
|
||||||
ubuntu_warty
|
ubuntu_warty
|
||||||
ubuntu_hoary
|
ubuntu_hoary
|
||||||
|
|
@ -316,6 +322,7 @@ ubuntu_active() {
|
||||||
ubuntu_precise # until 2017-04
|
ubuntu_precise # until 2017-04
|
||||||
ubuntu_trusty # until 2019-04
|
ubuntu_trusty # until 2019-04
|
||||||
ubuntu_wily # until 2016-07
|
ubuntu_wily # until 2016-07
|
||||||
|
ubuntu_xenial # until 2021-04
|
||||||
}
|
}
|
||||||
|
|
||||||
ubuntu() {
|
ubuntu() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue