debian bookworm time \o/
This commit is contained in:
parent
a5677e7d15
commit
5fa8c72863
3 changed files with 11 additions and 5 deletions
3
bundles/apt/files/sources.list-debian-bookworm
Normal file
3
bundles/apt/files/sources.list-debian-bookworm
Normal 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
|
|
@ -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': {},
|
||||
|
|
10
groups/os.py
10
groups/os.py
|
@ -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,)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue