From: Michael Prokop Date: Fri, 11 Aug 2023 16:59:17 +0000 (+0200) Subject: Add support for Debian/trixie (current Debian/testing) X-Git-Tag: v0.45.0~1 X-Git-Url: https://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=5730180f96fe169f77d43342e377172e802c7417 Add support for Debian/trixie (current Debian/testing) While at it, deprecate bullseye in zsh completion. Thanks: cb for the PR Closes: https://github.com/grml/grml-live/pull/135 --- diff --git a/etc/grml/fai/config/files/etc/apt/sources.list.d/debian.list/DEBIAN_TRIXIE b/etc/grml/fai/config/files/etc/apt/sources.list.d/debian.list/DEBIAN_TRIXIE new file mode 100644 index 0000000..7403459 --- /dev/null +++ b/etc/grml/fai/config/files/etc/apt/sources.list.d/debian.list/DEBIAN_TRIXIE @@ -0,0 +1,7 @@ +# official debian repository: + deb http://ftp.debian.org/debian/ trixie main contrib non-free-firmware non-free + deb-src http://ftp.debian.org/debian/ trixie main contrib non-free-firmware non-free + +# security updates: + deb http://security.debian.org/debian-security trixie-security main contrib non-free-firmware non-free + deb-src http://security.debian.org/debian-security trixie-security main contrib non-free-firmware non-free diff --git a/etc/zsh/completion.d/_grml-live b/etc/zsh/completion.d/_grml-live index bed07a9..aff48e8 100644 --- a/etc/zsh/completion.d/_grml-live +++ b/etc/zsh/completion.d/_grml-live @@ -49,7 +49,7 @@ _grmllive_suites() { #{{{ local -a suites suites=( - stable testing unstable bullseye bookworm sid + stable testing unstable bookworm sid trixie ) _wanted list expl 'Debian suite' compadd ${expl} -- ${suites} }