From 51a0cbfa79b9f9fd7c15ae3b074949e603990da4 Mon Sep 17 00:00:00 2001 From: Kyr Shatskyy Date: Wed, 3 Sep 2025 13:22:40 +0200 Subject: [PATCH] orchestra/opsys: alma and rocky are rpm distro Signed-off-by: Kyr Shatskyy --- teuthology/orchestra/opsys.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/orchestra/opsys.py b/teuthology/orchestra/opsys.py index 7f72234f7..9e89bba6c 100644 --- a/teuthology/orchestra/opsys.py +++ b/teuthology/orchestra/opsys.py @@ -110,7 +110,7 @@ class OS(object): __slots__ = ['name', 'version', 'codename', 'package_type'] _deb_distros = ('debian', 'ubuntu') - _rpm_distros = ('fedora', 'rhel', 'centos', 'opensuse', 'sle') + _rpm_distros = ('alma', 'rocky', 'fedora', 'rhel', 'centos', 'opensuse', 'sle') def __init__(self, name=None, version=None, codename=None): self.name = name -- 2.47.3