debian bookworm time \o/

This commit is contained in:
Franzi 2023-07-13 20:02:38 +02:00
parent a5677e7d15
commit 5fa8c72863
Signed by: kunsi
GPG key ID: 12E3D2136B818350
3 changed files with 11 additions and 5 deletions

View file

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

View file

@ -4,6 +4,7 @@ supported_os = {
'debian': {
10: 'buster',
11: 'bullseye',
12: 'bookworm',
99: 'unstable',
},
'raspbian': {
@ -113,7 +114,7 @@ pkg_apt = {
'mtr': {},
'ncdu': {},
'ncurses-term': {},
'netcat': {},
'netcat-openbsd': {},
'nmap': {},
'python3': {},
'python3-dev': {},

View file

@ -63,10 +63,8 @@ groups['arch'] = {
}
groups['debian'] = {
'subgroups': {
'debian-buster',
'debian-bullseye',
'debian-sid',
'subgroup_patterns': {
'^debian-[a-z]+$',
},
'bundles': {
'apt',
@ -84,6 +82,10 @@ groups['debian-bullseye'] = {
'os_version': (11,)
}
groups['debian-bookworm'] = {
'os_version': (12,)
}
groups['debian-sid'] = {
'os_version': (99,)
}