From: Michael Prokop Date: Wed, 30 Aug 2017 12:02:09 +0000 (+0200) Subject: Add support for Debian buster (AKA Debian v10 and current Detian testing) X-Git-Tag: v0.31.0~7 X-Git-Url: https://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=8c054a59a8f6df857236bb3fa4016329bf9f982c;hp=9612f61ab2bab3c2aabf47cb757abed4c2f4a114 Add support for Debian buster (AKA Debian v10 and current Detian testing) --- diff --git a/etc/grml/fai/config/files/etc/apt/sources.list.d/debian.list/DEBIAN_BUSTER b/etc/grml/fai/config/files/etc/apt/sources.list.d/debian.list/DEBIAN_BUSTER new file mode 100644 index 0000000..6be17af --- /dev/null +++ b/etc/grml/fai/config/files/etc/apt/sources.list.d/debian.list/DEBIAN_BUSTER @@ -0,0 +1,7 @@ +# official debian repository: + deb http://ftp.debian.org/debian/ buster main contrib non-free + deb-src http://ftp.debian.org/debian/ buster main contrib non-free + +# security updates: + deb http://security.debian.org/ buster/updates main contrib + deb-src http://security.debian.org/ buster/updates main contrib diff --git a/etc/zsh/completion.d/_grml-live b/etc/zsh/completion.d/_grml-live index 334ddbb..cb43f59 100644 --- a/etc/zsh/completion.d/_grml-live +++ b/etc/zsh/completion.d/_grml-live @@ -47,7 +47,7 @@ _grmllive_suites() { #{{{ local -a suites suites=( - stable testing unstable jessie stretch sid + stable testing unstable jessie stretch buster sid ) _wanted list expl 'Debian suite' compadd ${expl} -- ${suites} }