From 135f626b6d95fdbc0327a81372222c3a09a290f7 Mon Sep 17 00:00:00 2001 From: Vladimir Sedmik Date: Wed, 8 Jan 2025 11:44:47 +0100 Subject: [PATCH 1/2] Add rhsc9 repo to constants to fix tests using sat.REPOS --- robottelo/constants/__init__.py | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/robottelo/constants/__init__.py b/robottelo/constants/__init__.py index 2589bf658f5..646338fa92b 100644 --- a/robottelo/constants/__init__.py +++ b/robottelo/constants/__init__.py @@ -283,6 +283,7 @@ 'rhs8': 'Red Hat Satellite 6.13 for RHEL 8 x86_64 (RPMs)', 'rhsc7': 'Red Hat Satellite Capsule 6.11 (for RHEL 7 Server) (RPMs)', 'rhsc8': 'Red Hat Satellite Capsule 6.13 for RHEL 8 x86_64 (RPMs)', + 'rhsc9': 'Red Hat Satellite Capsule 6.16 for RHEL 9 x86_64 (RPMs)', 'rhsc7_iso': 'Red Hat Satellite Capsule 6.4 (for RHEL 7 Server) (ISOs)', 'rhsclient7': 'Red Hat Satellite Client 6 (for RHEL 7 Server) (RPMs)', 'rhsclient8': 'Red Hat Satellite Client 6 for RHEL 8 x86_64 (RPMs)', @@ -394,6 +395,15 @@ 'distro': 'rhel7', 'key': 'rhs', }, + 'rhsc7': { + 'id': 'rhel-7-server-satellite-capsule-6.11-rpms', + 'name': ('Red Hat Satellite Capsule 6.11 for RHEL 7 Server RPMs x86_64'), + 'version': '6.11', + 'reposet': REPOSET['rhsc7'], + 'product': PRDS['rhsc'], + 'distro': 'rhel7', + 'key': 'rhsc', + }, 'rhsc8': { 'id': 'satellite-capsule-6.13-for-rhel-8-x86_64-rpms', 'name': ('Red Hat Satellite Capsule 6.13 for RHEL 8 x86_64 RPMs'), @@ -403,13 +413,13 @@ 'distro': 'rhel8', 'key': 'rhsc', }, - 'rhsc7': { - 'id': 'rhel-7-server-satellite-capsule-6.11-rpms', - 'name': ('Red Hat Satellite Capsule 6.11 for RHEL 7 Server RPMs x86_64'), - 'version': '6.11', - 'reposet': REPOSET['rhsc7'], + 'rhsc9': { + 'id': 'satellite-capsule-6.16-for-rhel-9-x86_64-rpms', + 'name': ('Red Hat Satellite Capsule 6.16 for RHEL 9 x86_64 RPMs'), + 'version': '6.16', + 'reposet': REPOSET['rhsc9'], 'product': PRDS['rhsc'], - 'distro': 'rhel7', + 'distro': 'rhel9', 'key': 'rhsc', }, 'rhsc7_iso': { From e373317d2366d65381204b137e910ed326e26f4b Mon Sep 17 00:00:00 2001 From: Vladimir Sedmik Date: Thu, 9 Jan 2025 09:17:42 +0100 Subject: [PATCH 2/2] Update the rhscX repos to 6.16 --- robottelo/constants/__init__.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/robottelo/constants/__init__.py b/robottelo/constants/__init__.py index 646338fa92b..7ef51f27892 100644 --- a/robottelo/constants/__init__.py +++ b/robottelo/constants/__init__.py @@ -281,8 +281,8 @@ 'rhva6': ('Red Hat Enterprise Virtualization Agents for RHEL 6 Server (RPMs)'), 'rhs7': 'Red Hat Satellite 6.11 (for RHEL 7 Server) (RPMs)', 'rhs8': 'Red Hat Satellite 6.13 for RHEL 8 x86_64 (RPMs)', - 'rhsc7': 'Red Hat Satellite Capsule 6.11 (for RHEL 7 Server) (RPMs)', - 'rhsc8': 'Red Hat Satellite Capsule 6.13 for RHEL 8 x86_64 (RPMs)', + 'rhsc7': 'Red Hat Satellite Capsule 6.16 (for RHEL 7 Server) (RPMs)', + 'rhsc8': 'Red Hat Satellite Capsule 6.16 for RHEL 8 x86_64 (RPMs)', 'rhsc9': 'Red Hat Satellite Capsule 6.16 for RHEL 9 x86_64 (RPMs)', 'rhsc7_iso': 'Red Hat Satellite Capsule 6.4 (for RHEL 7 Server) (ISOs)', 'rhsclient7': 'Red Hat Satellite Client 6 (for RHEL 7 Server) (RPMs)', @@ -396,18 +396,18 @@ 'key': 'rhs', }, 'rhsc7': { - 'id': 'rhel-7-server-satellite-capsule-6.11-rpms', - 'name': ('Red Hat Satellite Capsule 6.11 for RHEL 7 Server RPMs x86_64'), - 'version': '6.11', + 'id': 'rhel-7-server-satellite-capsule-6.16-rpms', + 'name': ('Red Hat Satellite Capsule 6.16 for RHEL 7 Server RPMs x86_64'), + 'version': '6.16', 'reposet': REPOSET['rhsc7'], 'product': PRDS['rhsc'], 'distro': 'rhel7', 'key': 'rhsc', }, 'rhsc8': { - 'id': 'satellite-capsule-6.13-for-rhel-8-x86_64-rpms', - 'name': ('Red Hat Satellite Capsule 6.13 for RHEL 8 x86_64 RPMs'), - 'version': '6.13', + 'id': 'satellite-capsule-6.16-for-rhel-8-x86_64-rpms', + 'name': ('Red Hat Satellite Capsule 6.16 for RHEL 8 x86_64 RPMs'), + 'version': '6.16', 'reposet': REPOSET['rhsc8'], 'product': PRDS['rhsc'], 'distro': 'rhel8',