add support for debian trixie

This commit is contained in:
Franzi 2025-03-29 18:07:17 +01:00
parent 7cb8876231
commit d71af7561a
Signed by: kunsi
GPG key ID: 12E3D2136B818350
3 changed files with 8 additions and 0 deletions

View file

@ -0,0 +1,3 @@
deb http://deb.debian.org/debian/ trixie main non-free contrib non-free-firmware
deb http://security.debian.org/debian-security trixie-security main contrib non-free
deb http://deb.debian.org/debian/ trixie-updates main contrib non-free

View file

@ -5,6 +5,7 @@ supported_os = {
10: 'buster',
11: 'bullseye',
12: 'bookworm',
13: 'trixie',
99: 'unstable',
},
}

View file

@ -71,6 +71,10 @@ groups['debian-bookworm'] = {
'os_version': (12,)
}
groups['debian-trixie'] = {
'os_version': (13,)
}
groups['debian-sid'] = {
'os_version': (99,)
}