From 0bcfc56b7b09522e6dff17435c1e300e4bc73ef5 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Tue, 17 Sep 2024 16:20:55 +0200 Subject: [PATCH] MT#60815 lib/set_debian_info: support Debian/trixie Currently it's Debian/testing with trixie/sid yet, though to not fail with templates handling, let's add initial support for it. Addresses: | 2024-09-17 14:17:07 spce: Error: Cannot process template '/etc/ngcp-config/templates/etc/apt/sources.list.d/debian.list.tt2': | undef error - Error: unsupported Debian codename trixie at (eval 16) line 31. | | 2024-09-17 14:17:07 spce: Error: Generating /etc/apt/sources.list.d/debian.list based on /etc/ngcp-config/templates/etc/apt/sources.list.d/debian.list.tt2: FAILED Change-Id: Ib31bfec1373c51b3faeacc41a085b7229bff139e --- lib/set_debian_info | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/set_debian_info b/lib/set_debian_info index 36883824..04250431 100644 --- a/lib/set_debian_info +++ b/lib/set_debian_info @@ -26,6 +26,7 @@ 10 => 'buster', 11 => 'bullseye', 12 => 'bookworm', + 13 => 'trixie', ); my %codenames = map { $versions{$_} => $_ } keys %versions;