Add FreeBSD 12.2 & 13.0
This commit is contained in:
parent
7b791561aa
commit
12f88c0b6f
2 changed files with 17 additions and 1 deletions
|
|
@ -257,7 +257,9 @@ INSERT INTO systems (id, name, release, short, relorder) VALUES
|
|||
(204,'Ubuntu', '20.10', 'ubuntu-groovy', 32),
|
||||
(205,'Fedora', '33', 'fedora-33', 32),
|
||||
(206,'CentOS', '7.9', 'centos-7.9', 53),
|
||||
(207,'CentOS', '8.3', 'centos-8.3', 63);
|
||||
(207,'CentOS', '8.3', 'centos-8.3', 63),
|
||||
(208,'FreeBSD', '12.2', 'freebsd-12.2', 72),
|
||||
(209,'FreeBSD', '13.0', 'freebsd-13.0', 80);
|
||||
|
||||
|
||||
-- Removes any path components and compression extensions from the filename.
|
||||
|
|
|
|||
|
|
@ -607,6 +607,18 @@ case $1 in
|
|||
index_core freebsd-12.1 "${MIR}base.txz" core-base 2019-11-04
|
||||
index freebsd2 --sys freebsd-12.1 --mirror "$PKG"
|
||||
;;
|
||||
12.2)
|
||||
MIR="${CMIRROR}amd64/12.2-RELEASE/"
|
||||
PKG="${PMIRROR}FreeBSD:12:amd64/release_2/"
|
||||
index_core freebsd-12.2 "${MIR}base.txz" core-base 2020-10-27
|
||||
index freebsd2 --sys freebsd-12.2 --mirror "$PKG"
|
||||
;;
|
||||
13.0)
|
||||
MIR="${CMIRROR}amd64/13.0-RELEASE/"
|
||||
PKG="${PMIRROR}FreeBSD:13:amd64/release_0/"
|
||||
index_core freebsd-13.0 "${MIR}base.txz" core-base 2021-04-13
|
||||
index freebsd2 --sys freebsd-13.0 --mirror "$PKG"
|
||||
;;
|
||||
old)
|
||||
$0 1.0
|
||||
$0 2.0.5
|
||||
|
|
@ -676,5 +688,7 @@ case $1 in
|
|||
$0 11.4
|
||||
$0 12.0
|
||||
$0 12.1
|
||||
$0 12.2
|
||||
$0 13.0
|
||||
;;
|
||||
esac
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue