Add Debian Buster
This commit is contained in:
parent
1ce29f7c3f
commit
69cbd77729
3 changed files with 8 additions and 2 deletions
|
|
@ -239,7 +239,8 @@ INSERT INTO systems (id, name, release, short, relorder) VALUES
|
||||||
(186,'Fedora', '29', 'fedora-29', 28),
|
(186,'Fedora', '29', 'fedora-29', 28),
|
||||||
(187,'CentOS', '7.6', 'centos-7.6', 50),
|
(187,'CentOS', '7.6', 'centos-7.6', 50),
|
||||||
(188,'FreeBSD', '12.0', 'freebsd-12.0', 70),
|
(188,'FreeBSD', '12.0', 'freebsd-12.0', 70),
|
||||||
(189,'Ubuntu', '19.04', 'ubuntu-disco', 29);
|
(189,'Ubuntu', '19.04', 'ubuntu-disco', 29),
|
||||||
|
(190,'Debian', '10.0', 'debian-buster', 14);
|
||||||
|
|
||||||
|
|
||||||
-- Removes any path components and compression extensions from the filename.
|
-- Removes any path components and compression extensions from the filename.
|
||||||
|
|
|
||||||
|
|
@ -21,8 +21,8 @@ index_deb() {
|
||||||
local MIRROR=$2
|
local MIRROR=$2
|
||||||
local DISTRO=$3
|
local DISTRO=$3
|
||||||
local COMPONENTS=$4
|
local COMPONENTS=$4
|
||||||
local ARCH=${6:-"i386"}
|
|
||||||
local CONTENTS=${5:-"dists/$DISTRO/Contents-$ARCH.gz"}
|
local CONTENTS=${5:-"dists/$DISTRO/Contents-$ARCH.gz"}
|
||||||
|
local ARCH=${6:-"i386"}
|
||||||
|
|
||||||
for CMP in $COMPONENTS; do
|
for CMP in $COMPONENTS; do
|
||||||
local CONT=$CONTENTS
|
local CONT=$CONTENTS
|
||||||
|
|
|
||||||
|
|
@ -59,6 +59,10 @@ case "$1" in
|
||||||
index_deb debian-stretch $CMIRROR stretch "main contrib non-free" cmp
|
index_deb debian-stretch $CMIRROR stretch "main contrib non-free" cmp
|
||||||
index_deb debian-stretch $CMIRROR stretch-updates "main contrib non-free" cmp
|
index_deb debian-stretch $CMIRROR stretch-updates "main contrib non-free" cmp
|
||||||
;;
|
;;
|
||||||
|
buster)
|
||||||
|
index_deb debian-buster $CMIRROR buster "main contrib non-free" cmp amd64
|
||||||
|
index_deb debian-buster $CMIRROR buster-updates "main contrib non-free" cmp amd64
|
||||||
|
;;
|
||||||
old)
|
old)
|
||||||
$0 buzz
|
$0 buzz
|
||||||
$0 rex
|
$0 rex
|
||||||
|
|
@ -76,6 +80,7 @@ case "$1" in
|
||||||
;;
|
;;
|
||||||
current)
|
current)
|
||||||
$0 stretch
|
$0 stretch
|
||||||
|
$0 buster
|
||||||
;;
|
;;
|
||||||
all)
|
all)
|
||||||
$0 old
|
$0 old
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue