Added and indexed FreeBSD 9.2

This commit is contained in:
Yorhel 2013-10-19 20:18:00 +02:00
parent 32287f77bb
commit 000ffd33f6
2 changed files with 11 additions and 1 deletions

View file

@ -144,7 +144,8 @@ INSERT INTO systems (id, name, release, short, relorder) VALUES
(82, 'Ubuntu', '13.04', 'ubuntu-raring', 17),
(83, 'Debian', '7.0', 'debian-wheezy', 11),
(84, 'FreeBSD', '8.4', 'freebsd-8.4', 51),
(85, 'FreeBSD', '9.1', 'freebsd-9.1', 53);
(85, 'FreeBSD', '9.1', 'freebsd-9.1', 53),
(86, 'FreeBSD', '9.2', 'freebsd-9.2', 54);
-- Removes any path components and compression extensions from the filename.
CREATE OR REPLACE FUNCTION basename_from_filename(fn text) RETURNS text AS $$

View file

@ -719,6 +719,14 @@ f9_1() {
check_pkgdir 85 "$MIR/packages"
}
f9_2() {
MIR="http://ftp.dk.freebsd.org/pub/FreeBSD/releases/i386/9.2-RELEASE/"
echo "============ $MIR"
check_dist 86 "$MIR/base.txz" "core-base" "2013-09-27"
check_dist 86 "$MIR/games.txz" "core-games" "2013-09-27"
check_pkgdir 86 "$MIR/packages"
}
old() {
f1_0
@ -775,6 +783,7 @@ old() {
f8_4
f9_0
f9_1
f9_2
}
"$@"