2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-04 16:05:17 +00:00

[#2937] Add Fedora 38 support to hammer

This commit is contained in:
Marcin Godzina
2023-06-20 22:20:25 +00:00
parent cfe8e1f911
commit 9e51cc140a

View File

@@ -54,7 +54,8 @@ SYSTEMS = {
'34', '34',
'35', '35',
'36', '36',
'37' '37',
'38'
], ],
'centos': [ 'centos': [
'7', '7',
@@ -2263,6 +2264,8 @@ def _build_rpm(system, revision, features, tarball_path, env, check_times, dry_r
frc_version = 'isc20220516091651.fc36' frc_version = 'isc20220516091651.fc36'
elif system == 'fedora' and revision == '37': elif system == 'fedora' and revision == '37':
frc_version = 'isc20230620152003.fc37' frc_version = 'isc20230620152003.fc37'
elif system == 'fedora' and revision == '38':
frc_version = 'isc20230621000612.fc38'
elif system == 'centos' and revision == '7': elif system == 'centos' and revision == '7':
frc_version = 'isc20200318122047.el7' frc_version = 'isc20200318122047.el7'
elif system in ['centos', 'rhel'] and revision == '8': elif system in ['centos', 'rhel'] and revision == '8':