From 10946dbea22ec0cb8f11d26d958d3d10df120f75 Mon Sep 17 00:00:00 2001 From: Thorben Denzer Date: Wed, 3 Jul 2024 12:26:49 +0200 Subject: [PATCH] Fix outdated branded words: - Red Hat Virtualization: Change from "RHEV" to "RHV" - Red Hat Openstack Platform: Change from "RHEL Openstack Platform" to "Red Hat Openstack Platform" - Fix link to docs for registering hosts using bootstrap script --- lib/foreman_theme_satellite/branded_words.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/foreman_theme_satellite/branded_words.rb b/lib/foreman_theme_satellite/branded_words.rb index 01a2944..c7068dc 100644 --- a/lib/foreman_theme_satellite/branded_words.rb +++ b/lib/foreman_theme_satellite/branded_words.rb @@ -37,13 +37,13 @@ module ForemanThemeSatellite /\bSmart-Proxies\b(?!-)/ => 'Capsules', /\bSmart proxy\b(?!-)/ => 'Capsule', /\bSmart-Proxy\b(?!-)/ => 'Capsule', - /\boVirt\b(?!-)/ => 'RHEV', - /\bovirt\b(?!-)/ => 'RHEV', - /\bOvirt\b(?!-)/ => 'RHEV', + /\boVirt\b(?!-)/ => 'RHV', + /\bovirt\b(?!-)/ => 'RHV', + /\bOvirt\b(?!-)/ => 'RHV', /\bFreeIPA\b(?!-)/ => 'Red Hat Identity Management', - /\bOpenStack\b(?!-)/ => 'RHEL OpenStack Platform', - /\bopenstack\b(?!-)/ => 'RHEL OpenStack Platform', - /\bOpenstack\b(?!-)/ => 'RHEL OpenStack Platform', + /\bOpenStack\b(?!-)/ => 'Red Hat OpenStack Platform', + /\bopenstack\b(?!-)/ => 'Red Hat OpenStack Platform', + /\bOpenstack\b(?!-)/ => 'Red Hat OpenStack Platform', /\bProxy\b(?!-)/ => 'Capsule', /\bproxy\b(?!-)/ => 'Capsule', /\bProxies\b(?!-)/ => 'Capsules', @@ -53,6 +53,6 @@ module ForemanThemeSatellite /\b[Kk]atello 4.11\b(?!-)/ => 'Satellite 6.15', /\b[Kk]atello 4.12\b(?!-)/ => 'Satellite 6.16', /\b[Kk]atello 4.13\b(?!-)/ => 'Satellite 6.16', - %r{https://theforeman.org/plugins/katello/(?!-)} => "https://access.redhat.com/documentation/en-us/red_hat_satellite/#{ForemanThemeSatellite::SATELLITE_SHORT_VERSION}/html/managing_hosts/registering_hosts#registering-a-host-to-satellite-using-the-bootstrap-script" + %r{https://theforeman.org/plugins/katello/(?!-)} => "https://access.redhat.com/documentation/en-us/red_hat_satellite/#{ForemanThemeSatellite::SATELLITE_SHORT_VERSION}/html/managing_hosts/registering_hosts_to_server_managing-hosts#Registering_Hosts_by_Using_the_Bootstrap_Script_managing-hosts" }.freeze end