Skip to content

Commit

Permalink
Make check_ipa_server actor future-proof
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtechsokol committed Jul 16, 2024
1 parent f822cb8 commit 7457d19
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def ipa_inhibit_upgrade(ipainfo):
hint="Follow the IdM RHEL migration guide lines."
),
reporting.ExternalLink(
url=MIGRATION_GUIDES[get_source_major_version()],
url=MIGRATION_GUIDES.get(get_source_major_version(), "TBD"),
title="IdM migration guide",
),
reporting.Severity(reporting.Severity.HIGH),
Expand Down Expand Up @@ -62,8 +62,8 @@ def ipa_warn_pkg_installed(ipainfo):
commands=[["yum", "remove", "-y", "ipa-server"]],
),
reporting.ExternalLink(
url=MIGRATION_GUIDES[get_source_major_version()],
title="Migrating IdM from RHEL 7 to 8",
url=MIGRATION_GUIDES.get(get_source_major_version(), "TBD"),
title="IdM migration guide",
),
reporting.Severity(reporting.Severity.MEDIUM),
reporting.Groups([reporting.Groups.SERVICES]),
Expand Down

0 comments on commit 7457d19

Please sign in to comment.