Blame SOURCES/dnf-plugin-spacewalk-2.8.5-9-el8-to-dnf-plugin-spacewalk-2.8.5-10-el8.patch

e77f05
diff --git a/dnf-plugin-spacewalk.spec b/dnf-plugin-spacewalk.spec
e77f05
index fd42348..d2c31fa 100644
e77f05
--- a/dnf-plugin-spacewalk.spec
e77f05
+++ b/dnf-plugin-spacewalk.spec
e77f05
@@ -12,7 +12,7 @@
e77f05
 Summary: DNF plugin for Spacewalk
e77f05
 Name: dnf-plugin-spacewalk
e77f05
 Version: 2.8.5
e77f05
-Release: 9%{?dist}
e77f05
+Release: 10%{?dist}
e77f05
 License: GPLv2
e77f05
 Source0: https://github.com/spacewalkproject/spacewalk/archive/%{name}-%{version}.tar.gz
e77f05
 URL:     https://github.com/spacewalkproject/spacewalk
e77f05
@@ -113,6 +113,9 @@ install -m 644 actions/errata.py %{buildroot}%{python3_sitelib}/rhn/actions/
e77f05
 %endif
e77f05
 
e77f05
 %changelog
e77f05
+* Wed Apr 03 2019 Michael Mraka <michael.mraka@redhat.com> 2.8.5-10
e77f05
+- Resolves: #1673445 - changed wording to refer to Red Hat Satellite
e77f05
+
e77f05
 * Wed Dec 19 2018 Michael Mraka <michael.mraka@redhat.com> 2.8.5-9
e77f05
 - Resolves: #1660552 - report and fail gracefully if not root
e77f05
 - logger.warn() has been obsoleted
e77f05
diff --git a/spacewalk.py b/spacewalk.py
e77f05
index 1e60eef..89e7822 100644
e77f05
--- a/spacewalk.py
e77f05
+++ b/spacewalk.py
e77f05
@@ -38,17 +38,17 @@ from up2date_client import up2dateErrors
e77f05
 
e77f05
 STORED_CHANNELS_NAME = '_spacewalk.json'
e77f05
 
e77f05
-RHN_DISABLED    = _("Spacewalk based repositories will be disabled.")
e77f05
-CHANNELS_DISABLED = _("Spacewalk channel support will be disabled.")
e77f05
-COMMUNICATION_ERROR  = _("There was an error communicating with Spacewalk server.")
e77f05
-NOT_REGISTERED_ERROR = _("This system is not registered with Spacewalk server.")
e77f05
+RHN_DISABLED    = _("Red Hat Satellite or Spacewalk based repositories will be disabled.")
e77f05
+CHANNELS_DISABLED = _("Red Hat Satellite or Spacewalk channel support will be disabled.")
e77f05
+COMMUNICATION_ERROR  = _("There was an error communicating with Red Hat Satellite or Spacewalk server.")
e77f05
+NOT_REGISTERED_ERROR = _("This system is not registered with Red Hat Satellite or Spacewalk server.")
e77f05
 NOT_SUBSCRIBED_ERROR = _("This system is not subscribed to any channels.")
e77f05
 NO_SYSTEM_ID_ERROR   = _("SystemId could not be acquired.")
e77f05
 USE_RHNREGISTER      = _("You can use rhn_register to register.")
e77f05
-UPDATES_FROM_SPACEWALK = _("This system is receiving updates from Spacewalk server.")
e77f05
-GPG_KEY_REJECTED     = _("For security reasons packages from Spacewalk based repositories can be verified only with locally installed gpg keys. GPG key '%s' has been rejected.")
e77f05
+UPDATES_FROM_SPACEWALK = _("This system is receiving updates from Red Hat Satellite or Spacewalk server.")
e77f05
+GPG_KEY_REJECTED     = _("For security reasons packages from Red Hat Satellite or Spacewalk based repositories can be verified only with locally installed gpg keys. GPG key '%s' has been rejected.")
e77f05
 PROFILE_NOT_SENT     = _("Package profile information could not be sent.")
e77f05
-MISSING_HEADER       = _("Missing required login information for Spacewalk: %s")
e77f05
+MISSING_HEADER       = _("Missing required login information for Red Hat Satellite or Spacewalk: %s")
e77f05
 MUST_BE_ROOT         = _('Spacewalk plugin has to be run under with the root privileges.')
e77f05
 
e77f05
 class Spacewalk(dnf.Plugin):