Fix python version in CentOS Stream 10

CentOS Stream 10 uses Python 3.12, not 3.11 .

Change-Id: I3ceca64ddff6f6e7250b2dd9a721bf6a9c87c49c
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
This commit is contained in:
Takashi Kajinami
2025-09-28 00:10:14 +09:00
parent 152d6ca663
commit bc23cffcaa

View File

@@ -8,7 +8,7 @@ class openstacklib::defaults {
case $facts['os']['family'] {
'RedHat': {
$pyver3 = $facts['os']['release']['major'] ? {
'10' => '3.11',
'10' => '3.12',
default => '3.9',
}
}