diff --git a/sql/schema.sql b/sql/schema.sql index 9b9efaf..7bd704a 100644 --- a/sql/schema.sql +++ b/sql/schema.sql @@ -254,7 +254,8 @@ INSERT INTO systems (id, name, release, short, relorder) VALUES (201,'CentOS', '8.2', 'centos-8.2', 62), (202,'Fedora', '32', 'fedora-32', 31), (203,'FreeBSD', '11.4', 'freebsd-11.4', 65), - (204,'Ubuntu', '20.10', 'ubuntu-groovy', 32); + (204,'Ubuntu', '20.10', 'ubuntu-groovy', 32), + (205,'Fedora', '33', 'fedora-33', 32); -- Removes any path components and compression extensions from the filename. diff --git a/util/fedora.sh b/util/fedora.sh index 131aa30..b636fee 100755 --- a/util/fedora.sh +++ b/util/fedora.sh @@ -3,7 +3,7 @@ . ./common.sh AMIRROR=http://archives.fedoraproject.org/pub/archive/fedora/linux/ -CMIRROR=http://mirror.nl.leaseweb.net/fedora/linux/ +CMIRROR=http://ftp.nluug.nl/pub/os/Linux/distr/fedora/linux/ # Fedora 7+ is pretty regular @@ -121,6 +121,10 @@ case "$1" in index rpm --sys fedora-32 --cat everything --mirror "${CMIRROR}releases/32/Everything/x86_64/os/" index rpm --sys fedora-32 --cat everything --mirror "${CMIRROR}updates/32/Everything/x86_64/" ;; + 33) + index rpm --sys fedora-33 --cat everything --mirror "${CMIRROR}releases/33/Everything/x86_64/os/" + index rpm --sys fedora-33 --cat everything --mirror "${CMIRROR}updates/33/Everything/x86_64/" + ;; old) $0 1 $0 2 @@ -156,6 +160,7 @@ case "$1" in current) $0 31 $0 32 + $0 33 ;; all) $0 old