Add CentOS 6.10 and FreeBSD 11.2

This commit is contained in:
Yorhel 2018-07-06 07:51:13 +02:00
parent cfc656bf12
commit 617a76eeba
3 changed files with 22 additions and 8 deletions

View file

@ -225,14 +225,16 @@ INSERT INTO systems (id, name, release, short, relorder) VALUES
(172,'CentOS', '6.7', 'centos-6.7', 40),
(173,'CentOS', '6.8', 'centos-6.8', 41),
(174,'CentOS', '6.9', 'centos-6.9', 42),
(175,'CentOS', '7.0', 'centos-7.0', 43),
(176,'CentOS', '7.1', 'centos-7.1', 44),
(177,'CentOS', '7.2', 'centos-7.2', 45),
(178,'CentOS', '7.3', 'centos-7.3', 46),
(179,'CentOS', '7.4', 'centos-7.4', 47),
(175,'CentOS', '7.0', 'centos-7.0', 44),
(176,'CentOS', '7.1', 'centos-7.1', 45),
(177,'CentOS', '7.2', 'centos-7.2', 46),
(178,'CentOS', '7.3', 'centos-7.3', 47),
(179,'CentOS', '7.4', 'centos-7.4', 48),
(180,'Ubuntu', '18.04', 'ubuntu-bionic', 27),
(181,'Fedora', '28', 'fedora-28', 27),
(182,'CentOS', '7.5', 'centos-7.5', 48);
(182,'CentOS', '7.5', 'centos-7.5', 49),
(183,'CentOS', '6.10', 'centos-6.10', 43),
(184,'FreeBSD', '11.2', 'freebsd-11.2', 63);
-- Removes any path components and compression extensions from the filename.

View file

@ -162,6 +162,9 @@ case "$1" in
6.9)
centb 6.9 $CMIRROR
;;
6.10)
centb 6.10 $CMIRROR
;;
7.0)
centc 7.0 7.0.1406
;;
@ -221,6 +224,8 @@ case "$1" in
$0 6.6
$0 6.7
$0 6.8
$0 6.9
$0 6.10
$0 7.0
$0 7.1
$0 7.2
@ -228,8 +233,8 @@ case "$1" in
$0 7.4
;;
current)
$0 6.9 # till 2020-11-30
$0 7.5 # till 2024-06-30
$0 6.10 # till 2020-11-30
$0 7.5 # till 2024-06-30
;;
all)
$0 old

View file

@ -577,6 +577,12 @@ case $1 in
index_core freebsd-11.1 "${MIR}base.txz" core-base 2017-07-26
index freebsd2 --sys freebsd-11.1 --mirror "$PKG"
;;
11.2)
MIR="${CMIRROR}amd64/11.2-RELEASE/"
PKG="${PMIRROR}FreeBSD:11:amd64/release_2/"
index_core freebsd-11.2 "${MIR}base.txz" core-base 2018-06-27
index freebsd2 --sys freebsd-11.2 --mirror "$PKG"
;;
old)
$0 1.0
$0 2.0.5
@ -641,5 +647,6 @@ case $1 in
$0 10.4
$0 11.0
$0 11.1
$0 11.2
;;
esac