Add support for Debian/trixie (current Debian/testing)
authorMichael Prokop <mika@grml.org>
Fri, 11 Aug 2023 16:59:17 +0000 (18:59 +0200)
committerMichael Prokop <mika@grml.org>
Fri, 11 Aug 2023 17:16:02 +0000 (19:16 +0200)
While at it, deprecate bullseye in zsh completion.

Thanks: cb <christopher@bocki.com> for the PR
Closes: https://github.com/grml/grml-live/pull/135

etc/grml/fai/config/files/etc/apt/sources.list.d/debian.list/DEBIAN_TRIXIE [new file with mode: 0644]
etc/zsh/completion.d/_grml-live

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 (file)
index 0000000..7403459
--- /dev/null
@@ -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
index bed07a9..aff48e8 100644 (file)
@@ -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}
 }