1
0
mirror of https://github.com/gryf/boxpy.git synced 2026-03-19 02:23:34 +01:00

Bumped Fedora and Centos Stream versions

This commit is contained in:
2026-02-27 10:26:28 +01:00
parent 60e45b9bfc
commit 295fb59101
2 changed files with 5 additions and 3 deletions

View File

@@ -48,11 +48,12 @@ Tested distros
- Centos Stream - Centos Stream
- 8 - 8
- 9 - 9
- 10
- Debian - Debian
- 10 (buster) - 10 (buster)
- 11 (bullseye) - 11 (bullseye)
- 12 (bookworm) - 12 (bookworm)
- 13 (trixie) - prerelease - 13 (trixie)
There is possibility to use whatever OS image which supports cloud-init. Use There is possibility to use whatever OS image which supports cloud-init. Use
the ``--image`` param for ``create`` command to pass image filename, although the ``--image`` param for ``create`` command to pass image filename, although

5
box.py
View File

@@ -1145,7 +1145,8 @@ class Fedora(Image):
'39': '1.5', '39': '1.5',
'40': '1.14', '40': '1.14',
'41': '1.4', '41': '1.4',
'42': '1.1'} '42': '1.1',
'43': '1.6'}
def __init__(self, vbox, version, arch, fname=None): def __init__(self, vbox, version, arch, fname=None):
super().__init__(vbox, version, arch) super().__init__(vbox, version, arch)
@@ -1252,7 +1253,7 @@ DISTROS = {'ubuntu': {'username': 'ubuntu',
'realname': 'centos', 'realname': 'centos',
'img_class': CentosStream, 'img_class': CentosStream,
'amd64': 'x86_64', 'amd64': 'x86_64',
'default_version': '9'}, 'default_version': '10'},
'debian': {'username': 'debian', 'debian': {'username': 'debian',
'realname': 'debian', 'realname': 'debian',
'img_class': Debian, 'img_class': Debian,