import rhn-client-tools-2.10.10-1.0.8.el9
This commit is contained in:
commit
9aa151a86e
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
SOURCES/rhn-client-tools-2.10.10.tar.gz
|
1
.rhn-client-tools.metadata
Normal file
1
.rhn-client-tools.metadata
Normal file
@ -0,0 +1 @@
|
||||
1a962a171cef70960ed8c00bb436f2bd72ba6b3e SOURCES/rhn-client-tools-2.10.10.tar.gz
|
21
SOURCES/1001-fix-base64-encoding-Bug34372838.patch
Normal file
21
SOURCES/1001-fix-base64-encoding-Bug34372838.patch
Normal file
@ -0,0 +1,21 @@
|
||||
Fix OL9 osad start failure due to base64.encodestring() removal in Python 3.9
|
||||
|
||||
Orabug: 34372838
|
||||
|
||||
Signed-off-by: Laurence Rochfort <laurence.rochfort@oracle.com>
|
||||
Reviewed-by: Darren Kenny <darren.kenny@oracle.com>
|
||||
---
|
||||
diff -ruN rhn-client-tools-2.10.10.orig/src/bin/rhn_check.py rhn-client-tools-2.10.10/src/bin/rhn_check.py
|
||||
--- rhn-client-tools-2.10.10.orig/src/bin/rhn_check.py 2022-07-20 08:00:18.941150794 +0000
|
||||
+++ rhn-client-tools-2.10.10/src/bin/rhn_check.py 2022-07-20 08:19:54.181497449 +0000
|
||||
@@ -289,8 +289,8 @@
|
||||
data['return_code'] = 255
|
||||
data['process_start'] = '1970-01-01 00:00:00' # dummy values as we have no idea of start
|
||||
data['process_end'] = '1970-01-01 00:00:00' # and especially about the end
|
||||
- with open(action_lock) as f:
|
||||
- data['output'] = base64.encodestring(f.read())
|
||||
+ with open(action_lock, 'rb') as f:
|
||||
+ data['output'] = base64.encodebytes(f.read())
|
||||
log.log_debug("Sending back response", (255, "Previous run of action didn't completed sucessfully, aborting.", data))
|
||||
ret = self.submit_response(action['id'], 255, "Previous run of action didn't completed sucessfully, aborting.", data)
|
||||
os.remove(action_lock)
|
@ -0,0 +1,56 @@
|
||||
From 217b2c2bf573367f2e7df1f5fd447ea890425743 Mon Sep 17 00:00:00 2001
|
||||
From: Laurence Rochfort <laurence.rochfort@oracle.com>
|
||||
Date: Tue, 28 Jul 2020 13:14:39 +0000
|
||||
Subject: [PATCH] Disable local Oracle public yum repos after registration.
|
||||
|
||||
This is to prevent having duplicate channels defined coming from both
|
||||
Spacewalk and yum. All other local repos are left enabled.
|
||||
|
||||
Orabug: 31640087
|
||||
|
||||
Signed-off-by: Laurence Rochfort <laurence.rochfort@oracle.com>
|
||||
Reviewed-by: Jared Greenwald <jared.greenwald@oracle.com>
|
||||
---
|
||||
client/rhel/rhn-client-tools/src/bin/rhn_check.py | 12 ++++++++++++
|
||||
1 file changed, 12 insertions(+)
|
||||
|
||||
diff --git a/client/rhel/rhn-client-tools/src/bin/rhn_check.py b/client/rhel/rhn-client-tools/src/bin/rhn_check.py
|
||||
index cecb3c84ad..58d1a67c86 100755
|
||||
--- a/client/rhel/rhn-client-tools/src/bin/rhn_check.py
|
||||
+++ b/client/rhel/rhn-client-tools/src/bin/rhn_check.py
|
||||
@@ -31,6 +31,7 @@
|
||||
|
||||
import base64
|
||||
import os
|
||||
+import re
|
||||
import sys
|
||||
import socket
|
||||
|
||||
@@ -104,6 +105,7 @@ class CheckCli(rhncli.RhnCli):
|
||||
|
||||
self.__run_remote_actions()
|
||||
CheckCli.__run_local_actions()
|
||||
+ self.__public_yum_actions()
|
||||
|
||||
s = rhnserver.RhnServer()
|
||||
if s.capabilities.hasCapability('staging_content', 1) and cfg['stagingContent'] != 0:
|
||||
@@ -111,6 +113,16 @@ class CheckCli(rhncli.RhnCli):
|
||||
|
||||
sys.exit(0)
|
||||
|
||||
+ def __public_yum_actions(self):
|
||||
+ for root, dir, files in os.walk("/etc/yum.repos.d/"):
|
||||
+ for file in files:
|
||||
+ if file.endswith("ol8.repo"):
|
||||
+ file = os.path.join(root, file)
|
||||
+ file_t = open (file)
|
||||
+ file_text = file_t.read()
|
||||
+ if re.search("baseurl=.*yum.*oracle.com", file_text):
|
||||
+ os.system("sed -i 's/enabled=1/enabled=0/' %s" % file)
|
||||
+
|
||||
def __get_action(self, status_report):
|
||||
try:
|
||||
action = self.server.queue.get(up2dateAuth.getSystemId(),
|
||||
--
|
||||
2.24.2
|
||||
|
@ -0,0 +1,68 @@
|
||||
From 9093fca59d6bce1195df4eb53e8f75073970f59a Mon Sep 17 00:00:00 2001
|
||||
From: Laurence Rochfort <laurence.rochfort@oracle.com>
|
||||
Date: Tue, 9 Feb 2021 15:37:57 +0000
|
||||
Subject: [PATCH] Handle dmidecode dependencies for OL8 aarch64 builds
|
||||
|
||||
Port patches from base OS rhn-client-tools to allow dmidecode build
|
||||
for OL8 aarch64.
|
||||
|
||||
- Related: #1622145 - don't run dmi_warnings() if there's no dmidecode
|
||||
(tkasparek@redhat.com)
|
||||
- Related: #1622145 - split into arch package (tkasparek@redhat.com)
|
||||
- Resolves: #1622145 - drop dmidecode dependency on non x86_64 arches
|
||||
(tkasparek@redhat.com)
|
||||
|
||||
Orabug: 31414043
|
||||
|
||||
Signed-off-by: Laurence Rochfort <laurence.rochfort@oracle.com>
|
||||
Reviewed-by: Anton Krylov <anton.krylov@oracle.com>
|
||||
---
|
||||
client/rhel/rhn-client-tools/src/up2date_client/hardware.py | 11 ++++++++---
|
||||
1 file changed, 8 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/client/rhel/rhn-client-tools/src/up2date_client/hardware.py b/client/rhel/rhn-client-tools/src/up2date_client/hardware.py
|
||||
index 62a0c2f..7cb1e65 100644
|
||||
--- a/client/rhel/rhn-client-tools/src/up2date_client/hardware.py
|
||||
+++ b/client/rhel/rhn-client-tools/src/up2date_client/hardware.py
|
||||
@@ -46,6 +46,12 @@ try:
|
||||
except ImportError:
|
||||
netifaces_present = False
|
||||
|
||||
+try:
|
||||
+ import dmidecode
|
||||
+ dmidecode_present = True
|
||||
+except ImportError:
|
||||
+ dmidecode_present = False
|
||||
+
|
||||
import gettext
|
||||
t = gettext.translation('rhn-client-tools', fallback=True)
|
||||
# Python 3 translations don't have a ugettext method
|
||||
@@ -54,7 +60,6 @@ if not hasattr(t, 'ugettext'):
|
||||
_ = t.ugettext
|
||||
|
||||
import dbus
|
||||
-import dmidecode
|
||||
from up2date_client import up2dateLog
|
||||
|
||||
try:
|
||||
@@ -83,7 +88,7 @@ except ImportError:
|
||||
|
||||
# this does not change, we can cache it
|
||||
_dmi_data = None
|
||||
-_dmi_not_available = 0
|
||||
+_dmi_not_available = 0 if dmidecode_present else 1
|
||||
|
||||
def dmi_warnings():
|
||||
if not hasattr(dmidecode, 'get_warnings'):
|
||||
@@ -91,7 +96,7 @@ def dmi_warnings():
|
||||
|
||||
return dmidecode.get_warnings()
|
||||
|
||||
-dmi_warn = dmi_warnings()
|
||||
+dmi_warn = None if _dmi_not_available else dmi_warnings()
|
||||
if dmi_warn:
|
||||
dmidecode.clear_warnings()
|
||||
log = up2dateLog.initLog()
|
||||
--
|
||||
2.9.5
|
||||
|
111
SOURCES/bug26895848.patch
Executable file
111
SOURCES/bug26895848.patch
Executable file
@ -0,0 +1,111 @@
|
||||
diff -ruN rhn-client-tools-2.7.16.orig/data/Makefile rhn-client-tools-2.7.16/data/Makefile
|
||||
--- rhn-client-tools-2.7.16.orig/data/Makefile 2017-10-27 11:11:46.222415919 -0700
|
||||
+++ rhn-client-tools-2.7.16/data/Makefile 2017-10-27 11:15:07.504862693 -0700
|
||||
@@ -5,7 +5,7 @@
|
||||
|
||||
GLADES = gui.glade progress.glade rh_register.glade
|
||||
PUPLET_SS = puplet-screenshot.png
|
||||
-KEYS = RHNS-CA-CERT
|
||||
+KEYS = RHNS-CA-CERT ULN-CA-CERT
|
||||
|
||||
# Distro
|
||||
RHEL = $(shell rpm --eval 0%{?rhel})
|
||||
diff -ruN rhn-client-tools-2.7.16.orig/data/ULN-CA-CERT rhn-client-tools-2.7.16/data/ULN-CA-CERT
|
||||
--- rhn-client-tools-2.7.16.orig/data/ULN-CA-CERT 1969-12-31 16:00:00.000000000 -0800
|
||||
+++ rhn-client-tools-2.7.16/data/ULN-CA-CERT 2007-11-11 06:01:15.000000000 -0800
|
||||
@@ -0,0 +1,95 @@
|
||||
+Certificate:
|
||||
+ Data:
|
||||
+ Version: 1 (0x0)
|
||||
+ Serial Number:
|
||||
+ 02:ad:66:7e:4e:45:fe:5e:57:6f:3c:98:19:5e:dd:c0
|
||||
+ Signature Algorithm: md2WithRSAEncryption
|
||||
+ Issuer: C=US, O=RSA Data Security, Inc., OU=Secure Server Certification Authority
|
||||
+ Validity
|
||||
+ Not Before: Nov 9 00:00:00 1994 GMT
|
||||
+ Not After : Jan 7 23:59:59 2010 GMT
|
||||
+ Subject: C=US, O=RSA Data Security, Inc., OU=Secure Server Certification Authority
|
||||
+ Subject Public Key Info:
|
||||
+ Public Key Algorithm: rsaEncryption
|
||||
+ RSA Public Key: (1000 bit)
|
||||
+ Modulus (1000 bit):
|
||||
+ 00:92:ce:7a:c1:ae:83:3e:5a:aa:89:83:57:ac:25:
|
||||
+ 01:76:0c:ad:ae:8e:2c:37:ce:eb:35:78:64:54:03:
|
||||
+ e5:84:40:51:c9:bf:8f:08:e2:8a:82:08:d2:16:86:
|
||||
+ 37:55:e9:b1:21:02:ad:76:68:81:9a:05:a2:4b:c9:
|
||||
+ 4b:25:66:22:56:6c:88:07:8f:f7:81:59:6d:84:07:
|
||||
+ 65:70:13:71:76:3e:9b:77:4c:e3:50:89:56:98:48:
|
||||
+ b9:1d:a7:29:1a:13:2e:4a:11:59:9c:1e:15:d5:49:
|
||||
+ 54:2c:73:3a:69:82:b1:97:39:9c:6d:70:67:48:e5:
|
||||
+ dd:2d:d6:c8:1e:7b
|
||||
+ Exponent: 65537 (0x10001)
|
||||
+ Signature Algorithm: md2WithRSAEncryption
|
||||
+ 65:dd:7e:e1:b2:ec:b0:e2:3a:e0:ec:71:46:9a:19:11:b8:d3:
|
||||
+ c7:a0:b4:03:40:26:02:3e:09:9c:e1:12:b3:d1:5a:f6:37:a5:
|
||||
+ b7:61:03:b6:5b:16:69:3b:c6:44:08:0c:88:53:0c:6b:97:49:
|
||||
+ c7:3e:35:dc:6c:b9:bb:aa:df:5c:bb:3a:2f:93:60:b6:a9:4b:
|
||||
+ 4d:f2:20:f7:cd:5f:7f:64:7b:8e:dc:00:5c:d7:fa:77:ca:39:
|
||||
+ 16:59:6f:0e:ea:d3:b5:83:7f:4d:4d:42:56:76:b4:c9:5f:04:
|
||||
+ f8:38:f8:eb:d2:5f:75:5f:cd:7b:fc:e5:8e:80:7c:fc:50
|
||||
+-----BEGIN CERTIFICATE-----
|
||||
+MIICNDCCAaECEAKtZn5ORf5eV288mBle3cAwDQYJKoZIhvcNAQECBQAwXzELMAkG
|
||||
+A1UEBhMCVVMxIDAeBgNVBAoTF1JTQSBEYXRhIFNlY3VyaXR5LCBJbmMuMS4wLAYD
|
||||
+VQQLEyVTZWN1cmUgU2VydmVyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTk0
|
||||
+MTEwOTAwMDAwMFoXDTEwMDEwNzIzNTk1OVowXzELMAkGA1UEBhMCVVMxIDAeBgNV
|
||||
+BAoTF1JTQSBEYXRhIFNlY3VyaXR5LCBJbmMuMS4wLAYDVQQLEyVTZWN1cmUgU2Vy
|
||||
+dmVyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIGbMA0GCSqGSIb3DQEBAQUAA4GJ
|
||||
+ADCBhQJ+AJLOesGugz5aqomDV6wlAXYMra6OLDfO6zV4ZFQD5YRAUcm/jwjiioII
|
||||
+0haGN1XpsSECrXZogZoFokvJSyVmIlZsiAeP94FZbYQHZXATcXY+m3dM41CJVphI
|
||||
+uR2nKRoTLkoRWZweFdVJVCxzOmmCsZc5nG1wZ0jl3S3WyB57AgMBAAEwDQYJKoZI
|
||||
+hvcNAQECBQADfgBl3X7hsuyw4jrg7HFGmhkRuNPHoLQDQCYCPgmc4RKz0Vr2N6W3
|
||||
+YQO2WxZpO8ZECAyIUwxrl0nHPjXcbLm7qt9cuzovk2C2qUtN8iD3zV9/ZHuO3ABc
|
||||
+1/p3yjkWWW8O6tO1g39NTUJWdrTJXwT4OPjr0l91X817/OWOgHz8UA==
|
||||
+-----END CERTIFICATE-----
|
||||
+Certificate:
|
||||
+ Data:
|
||||
+ Version: 1 (0x0)
|
||||
+ Serial Number:
|
||||
+ 70:ba:e4:1d:10:d9:29:34:b6:38:ca:7b:03:cc:ba:bf
|
||||
+ Signature Algorithm: md2WithRSAEncryption
|
||||
+ Issuer: C=US, O=VeriSign, Inc., OU=Class 3 Public Primary Certification Authority
|
||||
+ Validity
|
||||
+ Not Before: Jan 29 00:00:00 1996 GMT
|
||||
+ Not After : Aug 1 23:59:59 2028 GMT
|
||||
+ Subject: C=US, O=VeriSign, Inc., OU=Class 3 Public Primary Certification Authority
|
||||
+ Subject Public Key Info:
|
||||
+ Public Key Algorithm: rsaEncryption
|
||||
+ RSA Public Key: (1024 bit)
|
||||
+ Modulus (1024 bit):
|
||||
+ 00:c9:5c:59:9e:f2:1b:8a:01:14:b4:10:df:04:40:
|
||||
+ db:e3:57:af:6a:45:40:8f:84:0c:0b:d1:33:d9:d9:
|
||||
+ 11:cf:ee:02:58:1f:25:f7:2a:a8:44:05:aa:ec:03:
|
||||
+ 1f:78:7f:9e:93:b9:9a:00:aa:23:7d:d6:ac:85:a2:
|
||||
+ 63:45:c7:72:27:cc:f4:4c:c6:75:71:d2:39:ef:4f:
|
||||
+ 42:f0:75:df:0a:90:c6:8e:20:6f:98:0f:f8:ac:23:
|
||||
+ 5f:70:29:36:a4:c9:86:e7:b1:9a:20:cb:53:a5:85:
|
||||
+ e7:3d:be:7d:9a:fe:24:45:33:dc:76:15:ed:0f:a2:
|
||||
+ 71:64:4c:65:2e:81:68:45:a7
|
||||
+ Exponent: 65537 (0x10001)
|
||||
+ Signature Algorithm: md2WithRSAEncryption
|
||||
+ bb:4c:12:2b:cf:2c:26:00:4f:14:13:dd:a6:fb:fc:0a:11:84:
|
||||
+ 8c:f3:28:1c:67:92:2f:7c:b6:c5:fa:df:f0:e8:95:bc:1d:8f:
|
||||
+ 6c:2c:a8:51:cc:73:d8:a4:c0:53:f0:4e:d6:26:c0:76:01:57:
|
||||
+ 81:92:5e:21:f1:d1:b1:ff:e7:d0:21:58:cd:69:17:e3:44:1c:
|
||||
+ 9c:19:44:39:89:5c:dc:9c:00:0f:56:8d:02:99:ed:a2:90:45:
|
||||
+ 4c:e4:bb:10:a4:3d:f0:32:03:0e:f1:ce:f8:e8:c9:51:8c:e6:
|
||||
+ 62:9f:e6:9f:c0:7d:b7:72:9c:c9:36:3a:6b:9f:4e:a8:ff:64:
|
||||
+ 0d:64
|
||||
+-----BEGIN CERTIFICATE-----
|
||||
+MIICPDCCAaUCEHC65B0Q2Sk0tjjKewPMur8wDQYJKoZIhvcNAQECBQAwXzELMAkG
|
||||
+A1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFz
|
||||
+cyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTk2
|
||||
+MDEyOTAwMDAwMFoXDTI4MDgwMTIzNTk1OVowXzELMAkGA1UEBhMCVVMxFzAVBgNV
|
||||
+BAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFzcyAzIFB1YmxpYyBQcmlt
|
||||
+YXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIGfMA0GCSqGSIb3DQEBAQUAA4GN
|
||||
+ADCBiQKBgQDJXFme8huKARS0EN8EQNvjV69qRUCPhAwL0TPZ2RHP7gJYHyX3KqhE
|
||||
+BarsAx94f56TuZoAqiN91qyFomNFx3InzPRMxnVx0jnvT0Lwdd8KkMaOIG+YD/is
|
||||
+I19wKTakyYbnsZogy1Olhec9vn2a/iRFM9x2Fe0PonFkTGUugWhFpwIDAQABMA0G
|
||||
+CSqGSIb3DQEBAgUAA4GBALtMEivPLCYATxQT3ab7/AoRhIzzKBxnki98tsX63/Do
|
||||
+lbwdj2wsqFHMc9ikwFPwTtYmwHYBV4GSXiHx0bH/59AhWM1pF+NEHJwZRDmJXNyc
|
||||
+AA9WjQKZ7aKQRUzkuxCkPfAyAw7xzvjoyVGM5mKf5p/AfbdynMk2OmufTqj/ZA1k
|
||||
+-----END CERTIFICATE-----
|
23
SOURCES/oracle-source-code-offer-client.patch
Normal file
23
SOURCES/oracle-source-code-offer-client.patch
Normal file
@ -0,0 +1,23 @@
|
||||
diff -urN rhn-client-tools-2.0.1.orig/doc/README rhn-client-tools-2.0.1/doc/README
|
||||
--- rhn-client-tools-2.0.1.orig/doc/README 1969-12-31 16:00:00.000000000 -0800
|
||||
+++ rhn-client-tools-2.0.1/doc/README 2013-11-02 12:32:29.655513823 -0700
|
||||
@@ -0,0 +1,19 @@
|
||||
+OFFER TO PROVIDE SOURCE CODE
|
||||
+
|
||||
+ For software that you receive from Oracle in binary form that is licensed under an open source license that gives you the right to receive the source code for that binary, you can obtain a copy of the applicable source code from https://oss.oracle.com/sources/ or http://www.oracle.com/goto/opensourcecode. Alternatively, if the source code for the technology was not provided to you with the binary, you can also receive a copy of the source code on physical media by submitting a written request to:
|
||||
+
|
||||
+ Oracle America, Inc.
|
||||
+ Attn: Associate General Counsel
|
||||
+ Development and Engineering Legal
|
||||
+ 500 Oracle Parkway, 10th Floor
|
||||
+ Redwood Shores, CA 94065
|
||||
+
|
||||
+ Or, you may send an email to Oracle using the form linked from http://www.oracle.com/goto/opensourcecode. Your written or emailed request should include:
|
||||
+ * The name of the component or binary file(s) for which you are requesting the source code
|
||||
+ * The name and version number of the Oracle product
|
||||
+ * The date you received the Oracle product
|
||||
+ * Your name
|
||||
+ * Your company name (if applicable)
|
||||
+ * Your return mailing address and email
|
||||
+ * A telephone number in the event we need to reach you.
|
||||
+ We may charge you a fee to cover the cost of physical media and processing. Your request must be sent (i) within three (3) years of the date you received the Oracle product that included the component or binary file(s) that are the subject of your request, or (ii) in the case of code licensed under the GPL v3, for as long as Oracle offers spare parts or customer support for that product model or version.
|
731
SOURCES/oracle-spacewalk-code.patch
Normal file
731
SOURCES/oracle-spacewalk-code.patch
Normal file
@ -0,0 +1,731 @@
|
||||
diff -ruN rhn-client-tools-2.7.16.orig/data/gui.glade rhn-client-tools-2.7.16/data/gui.glade
|
||||
--- rhn-client-tools-2.7.16.orig/data/gui.glade 2017-08-09 09:58:44.000000000 -0700
|
||||
+++ rhn-client-tools-2.7.16/data/gui.glade 2017-08-25 12:59:14.283621157 -0700
|
||||
@@ -77,7 +77,7 @@
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="page_type">confirm</property>
|
||||
- <property name="title" translatable="yes">Red Hat Account</property>
|
||||
+ <property name="title" translatable="yes">Spacewalk Account</property>
|
||||
<property name="header_image">@@logo@@</property>
|
||||
<property name="complete">True</property>
|
||||
</packing>
|
||||
diff -ruN rhn-client-tools-2.7.16.orig/data/rh_register.glade rhn-client-tools-2.7.16/data/rh_register.glade
|
||||
--- rhn-client-tools-2.7.16.orig/data/rh_register.glade 2017-08-09 09:58:44.000000000 -0700
|
||||
+++ rhn-client-tools-2.7.16/data/rh_register.glade 2017-08-25 12:59:14.354111984 -0700
|
||||
@@ -85,7 +85,7 @@
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label129">
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes">This system will <b>not</b> be able to successfully receive software updates, including security updates, from Red Hat without connecting to a Red Hat Satellite or Red Hat Network Classic.
|
||||
+ <property name="label" translatable="yes">This system will <b>not</b> be able to successfully receive software updates, including security updates, from Oracle without connecting to Spacewalk or the Unbreakable Linux Network.
|
||||
|
||||
To keep your system updated, secure, and supported, please register this system at your earliest convenience.</property>
|
||||
<property name="use_underline">False</property>
|
||||
@@ -173,7 +173,7 @@
|
||||
<child>
|
||||
<widget class="GtkLabel" id="chooseServerLabel">
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes">I'd like to register with an Red Hat Satellite or Red Hat Satellite Proxy</property>
|
||||
+ <property name="label" translatable="yes">I'd like to register with Spacewalk or a Spacewalk Proxy</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">True</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
@@ -188,7 +188,7 @@
|
||||
<property name="single_line_mode">False</property>
|
||||
<property name="angle">0</property>
|
||||
<accessibility>
|
||||
- <atkproperty name="AtkObject::accessible_name" translatable="yes">I'd like to register with an Red Hat Satellite or Red Hat Satellite Proxy</atkproperty>
|
||||
+ <atkproperty name="AtkObject::accessible_name" translatable="yes">I'd like to register with Spacewalk or a Spacewalk Proxy</atkproperty>
|
||||
</accessibility>
|
||||
</widget>
|
||||
<packing>
|
||||
@@ -282,7 +282,7 @@
|
||||
<property name="invisible_char">•</property>
|
||||
<property name="activates_default">False</property>
|
||||
<accessibility>
|
||||
- <atkproperty name="AtkObject::accessible_name" translatable="yes">satellite server location</atkproperty>
|
||||
+ <atkproperty name="AtkObject::accessible_name" translatable="yes">Spacewalk server location</atkproperty>
|
||||
</accessibility>
|
||||
</widget>
|
||||
<packing>
|
||||
@@ -352,7 +352,7 @@
|
||||
|
||||
<widget class="GtkWindow" id="initialLoginWindow">
|
||||
<property name="visible">True</property>
|
||||
- <property name="title" translatable="yes">Red Hat Account</property>
|
||||
+ <property name="title" translatable="yes">Spacewalk account</property>
|
||||
<property name="type">GTK_WINDOW_TOPLEVEL</property>
|
||||
<property name="window_position">GTK_WIN_POS_NONE</property>
|
||||
<property name="modal">False</property>
|
||||
@@ -366,7 +366,7 @@
|
||||
<property name="focus_on_map">True</property>
|
||||
<property name="urgency_hint">False</property>
|
||||
<accessibility>
|
||||
- <atkproperty name="AtkObject::accessible_name" translatable="yes">Red Hat Account</atkproperty>
|
||||
+ <atkproperty name="AtkObject::accessible_name" translatable="yes">Spacewalk account</atkproperty>
|
||||
</accessibility>
|
||||
|
||||
<child>
|
||||
@@ -379,7 +379,7 @@
|
||||
<child>
|
||||
<widget class="GtkLabel" id="instructionsLabel">
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes">Please enter your Red Hat account information:</property>
|
||||
+ <property name="label" translatable="yes">Please enter your Spacewalk account information:</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">True</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
@@ -394,7 +394,7 @@
|
||||
<property name="single_line_mode">False</property>
|
||||
<property name="angle">0</property>
|
||||
<accessibility>
|
||||
- <atkproperty name="AtkObject::accessible_name" translatable="yes">Please enter your Red Hat account information:</atkproperty>
|
||||
+ <atkproperty name="AtkObject::accessible_name" translatable="yes">Please enter your Spacewalk account information:</atkproperty>
|
||||
</accessibility>
|
||||
</widget>
|
||||
<packing>
|
||||
@@ -588,7 +588,7 @@
|
||||
|
||||
<child>
|
||||
<widget class="GtkLabel" id="forgotInfoSatellite">
|
||||
- <property name="label" translatable="yes"><small>Tip: Forgot your login or password? Contact your Satellite's <i>Organization Administrator</i>.</small></property>
|
||||
+ <property name="label" translatable="yes"><small>Tip: Forgot your login or password? Contact your Spacewalk's <i>Organization Administrator</i>.</small></property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">True</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
@@ -662,7 +662,7 @@
|
||||
<child>
|
||||
<widget class="GtkLabel" id="versionTag">
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes">Red Hat Linux Version:</property>
|
||||
+ <property name="label" translatable="yes">Oracle Linux Version:</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">False</property>
|
||||
<property name="justify">GTK_JUSTIFY_RIGHT</property>
|
||||
@@ -1198,7 +1198,7 @@
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label98">
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes">This assistant will guide you through the process of registering your system with Red Hat to receive software updates and other benefits. You will need the following to register:</property>
|
||||
+ <property name="label" translatable="yes">This assistant will guide you through the process of registering your system with Oracle to receive software updates and other benefits. You will need the following to register:</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">False</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
@@ -1213,7 +1213,7 @@
|
||||
<property name="single_line_mode">False</property>
|
||||
<property name="angle">0</property>
|
||||
<accessibility>
|
||||
- <atkproperty name="AtkObject::accessible_name" translatable="yes">This assistant will guide you through the process of registering your system with Red Hat to receive software updates and other benefits. You will need the following to register:</atkproperty>
|
||||
+ <atkproperty name="AtkObject::accessible_name" translatable="yes">This assistant will guide you through the process of registering your system with Oracle to receive software updates and other benefits. You will need the following to register:</atkproperty>
|
||||
</accessibility>
|
||||
</widget>
|
||||
<packing>
|
||||
@@ -1297,7 +1297,7 @@
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label152">
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes">• The address of an Red Hat Satellite or Red Hat Satellite Proxy</property>
|
||||
+ <property name="label" translatable="yes">• The address of a Spacewalk server or Spacewalk Proxy</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">False</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
@@ -1535,7 +1535,7 @@
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label9">
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes">Purchase an additional Red Hat Enterprise Linux subscription at http://www.redhat.com/store/.</property>
|
||||
+ <property name="label" translatable="yes">Purchase an additional Oracle Linux subscription at https://shop.oracle.com/pls/ostore/f?p=dstore:2:0::NO:RIR,RP,2:PROD_HIER_ID:4510272175861805728468.</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">False</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
@@ -1562,7 +1562,7 @@
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label8">
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes">Log in to http://rhn.redhat.com/ and unentitle an inactive system at Your RHN > Subscription Management > System Entitlements.</property>
|
||||
+ <property name="label" translatable="yes">Log in to http://linux.oracle.com/ and unentitle an inactive system at Your ULN > Subscription Management > System Entitlements.</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">False</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
@@ -2483,7 +2483,7 @@
|
||||
<widget class="GtkLabel" id="label119">
|
||||
<property name="width_request">600</property>
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes">Registering your system with Red Hat allows you to take full advantage of the benefits of a paid subscription, including:</property>
|
||||
+ <property name="label" translatable="yes">Registering your system with Oracle allows you to take full advantage of the benefits of a paid subscription, including:</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">False</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
@@ -2498,7 +2498,7 @@
|
||||
<property name="single_line_mode">False</property>
|
||||
<property name="angle">0</property>
|
||||
<accessibility>
|
||||
- <atkproperty name="AtkObject::accessible_name" translatable="yes">Registering your system with Red Hat allows you to take full advantage of the benefits of a paid subscription, including:</atkproperty>
|
||||
+ <atkproperty name="AtkObject::accessible_name" translatable="yes">Registering your system with Oracle allows you to take full advantage of the benefits of a paid subscription, including:</atkproperty>
|
||||
</accessibility>
|
||||
</widget>
|
||||
<packing>
|
||||
@@ -2629,7 +2629,7 @@
|
||||
<widget class="GtkLabel" id="label62">
|
||||
<property name="width_request">460</property>
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes">Receive the latest software updates, including security updates, keeping this Red Hat Enterprise Linux system <b>updated</b> and <b>secure</b>.</property>
|
||||
+ <property name="label" translatable="yes">Receive the latest software updates, including security updates, keeping this Oracle Linux system <b>updated</b> and <b>secure</b>.</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">True</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
@@ -2724,7 +2724,7 @@
|
||||
<widget class="GtkLabel" id="label64">
|
||||
<property name="width_request">460</property>
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes">Download installation images for Red Hat Enterprise Linux releases, including new releases.</property>
|
||||
+ <property name="label" translatable="yes">Download installation images for Oracle Linux releases, including new releases.</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">True</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
@@ -2819,7 +2819,7 @@
|
||||
<widget class="GtkLabel" id="label66">
|
||||
<property name="width_request">460</property>
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes">Access to the technical support experts at Red Hat or Red Hat's partners for help with any issues you might encounter with this system.</property>
|
||||
+ <property name="label" translatable="yes">Access to the technical support experts at Oracle for help with any issues you might encounter with this system.</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">True</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
@@ -2917,7 +2917,7 @@
|
||||
<widget class="GtkLabel" id="label68">
|
||||
<property name="width_request">460</property>
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes">Manage subscriptions and systems registered to Customer Portal via access.redhat.com or through one of our other subscription management services.</property>
|
||||
+ <property name="label" translatable="yes">Manage subscriptions and systems registered to the Unbreakable Linux Network via linux.oracle.com.</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">True</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
@@ -2932,7 +2932,7 @@
|
||||
<property name="single_line_mode">False</property>
|
||||
<property name="angle">0</property>
|
||||
<accessibility>
|
||||
- <atkproperty name="AtkObject::accessible_name" translatable="yes">Manage subscriptions and systems registered to Customer Portal via access.redhat.com or through one of our other subscription management services.</atkproperty>
|
||||
+ <atkproperty name="AtkObject::accessible_name" translatable="yes">Manage subscriptions and systems registered to the Unbreakable Linux Network via linux.oracle.com.</atkproperty>
|
||||
</accessibility>
|
||||
</widget>
|
||||
<packing>
|
||||
@@ -2986,7 +2986,7 @@
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label125">
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes"><small><b>Tip:</b> Red Hat values your privacy: http://www.redhat.com/legal/privacy_statement.html.</small></property>
|
||||
+ <property name="label" translatable="yes"><small><b>Tip:</b> Oracle values your privacy: http://www.oracle.com/us/legal/privacy/overview/index.html.</small></property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">True</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
@@ -4055,7 +4055,7 @@
|
||||
<widget class="GtkLabel" id="label25">
|
||||
<property name="width_request">600</property>
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes">Are you sure you don't want to register your system with Red Hat? You'll miss out on the benefits of a Red Hat Enterprise Linux Subscription:</property>
|
||||
+ <property name="label" translatable="yes">Are you sure you don't want to register your system with Spacewalk? You'll miss out on the benefits of a Oracle Linux Subscription:</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">False</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
@@ -4070,7 +4070,7 @@
|
||||
<property name="single_line_mode">False</property>
|
||||
<property name="angle">0</property>
|
||||
<accessibility>
|
||||
- <atkproperty name="AtkObject::accessible_name" translatable="yes">Are you sure you don't want to register your system with Red Hat? You'll miss out on the benefits of a Red Hat Enterprise Linux Subscription:</atkproperty>
|
||||
+ <atkproperty name="AtkObject::accessible_name" translatable="yes">Are you sure you don't want to register your system with Oracle? You'll miss out on the benefits of a Oracle Linux Subscription:</atkproperty>
|
||||
</accessibility>
|
||||
</widget>
|
||||
<packing>
|
||||
@@ -4162,7 +4162,7 @@
|
||||
<widget class="GtkLabel" id="label31">
|
||||
<property name="width_request">460</property>
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes">Receive the latest software updates, including security updates, keeping this Red Hat Enterprise Linux system <b>updated</b> and <b>secure</b>.</property>
|
||||
+ <property name="label" translatable="yes">Receive the latest software updates, including security updates, keeping this Oracle Linux system <b>updated</b> and <b>secure</b>.</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">True</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
@@ -4257,7 +4257,7 @@
|
||||
<widget class="GtkLabel" id="label33">
|
||||
<property name="width_request">460</property>
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes">Download installation images for Red Hat Enterprise Linux releases, including new releases.</property>
|
||||
+ <property name="label" translatable="yes">Download installation images for Oracle Linux releases, including new releases.</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">True</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
@@ -4352,7 +4352,7 @@
|
||||
<widget class="GtkLabel" id="label41">
|
||||
<property name="width_request">460</property>
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes">Access to the technical support experts at Red Hat or Red Hat's partners for help with any issues you might encounter with this system.</property>
|
||||
+ <property name="label" translatable="yes">Access to the technical support experts at Oracle for help with any issues you might encounter with this system.</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">True</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
@@ -4451,7 +4451,7 @@
|
||||
<property name="width_request">460</property>
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
- <property name="label" translatable="yes">Manage subscriptions and systems registered to Customer Portal via access.redhat.com or through one of our other subscription management services.</property>
|
||||
+ <property name="label" translatable="yes">Manage subscriptions and systems registered to the Unbreakable Linux Network via linux.oracle.com.</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">True</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
@@ -4466,7 +4466,7 @@
|
||||
<property name="single_line_mode">False</property>
|
||||
<property name="angle">0</property>
|
||||
<accessibility>
|
||||
- <atkproperty name="AtkObject::accessible_name" translatable="yes">Manage subscriptions and systems registered to Customer Portal via access.redhat.com or through one of our other subscription management services.</atkproperty>
|
||||
+ <atkproperty name="AtkObject::accessible_name" translatable="yes">Manage subscriptions and systems registered to the Unbreakable Linux Network via linux.oracle.com.</atkproperty>
|
||||
</accessibility>
|
||||
</widget>
|
||||
<packing>
|
||||
@@ -4947,7 +4947,7 @@
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label72">
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes">This system has already been registered with RHN using RHN certificate-based technology.</property>
|
||||
+ <property name="label" translatable="yes">This system has already been registered with ULN using ULN certificate-based technology.</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">False</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
@@ -4972,7 +4972,7 @@
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label73">
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes">Your system is being registered again using RHN Classic technology. Red Hat recommends that customers only register once.</property>
|
||||
+ <property name="label" translatable="yes">Your system is being registered again. Oracle recommends that customers only register once.</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">False</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
@@ -4997,7 +4997,7 @@
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label74">
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes">To learn more about RHN registration and technologies please consult this Knowledge Base Article: <a href="https://access.redhat.com/kb/docs/DOC-45563">https://access.redhat.com/kb/docs/DOC-45563</a>
|
||||
+ <property name="label" translatable="yes">To learn more about Spacewalk registration and technologies please consult the Oracle Linux Documentation Library: <a href="http://docs.oracle.com/cd/E37670_01/index.html">http://docs.oracle.com/cd/E37670_01/index.html</a>
|
||||
</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">True</property>
|
||||
@@ -5161,7 +5161,7 @@
|
||||
<child>
|
||||
<widget class="GtkImage" id="image5">
|
||||
<property name="visible">True</property>
|
||||
- <property name="pixbuf">puplet-screenshot.png</property>
|
||||
+ <property name="pixbuf">/usr/share/pixmaps/puplet-screenshot.png</property>
|
||||
<property name="xalign">0.5</property>
|
||||
<property name="yalign">0.5</property>
|
||||
<property name="xpad">0</property>
|
||||
@@ -5403,7 +5403,7 @@
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label136">
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes"><b>Tip:</b> Minor releases with a '*' are currently fully supported by Red Hat.</property>
|
||||
+ <property name="label" translatable="yes"><b>Tip:</b> Minor releases with a '*' are currently fully supported by Oracle.</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="use_markup">True</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
@@ -5464,7 +5464,7 @@
|
||||
<child>
|
||||
<widget class="GtkLabel" id="allUpdatesLabel">
|
||||
<property name="visible">True</property>
|
||||
- <property name="label" translatable="yes"><b>_All available updates</b> will be provided to this system. If kept updated, this system will always be equivalent to the latest minor release in the main 'Red Hat Enterprise Linux x' software channel.</property>
|
||||
+ <property name="label" translatable="yes"><b>_All available updates</b> will be provided to this system. If kept updated, this system will always be equivalent to the latest minor release in the main 'Oracle Linux x' software channel.</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="use_markup">True</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
@@ -5479,7 +5479,7 @@
|
||||
<property name="single_line_mode">False</property>
|
||||
<property name="angle">0</property>
|
||||
<accessibility>
|
||||
- <atkproperty name="AtkObject::accessible_name" translatable="yes">All available updates will be provided to this system. If kept updated, this system will always be equivalent to the latest minor release in the main 'Red Hat Enterprise Linux x' software channel.</atkproperty>
|
||||
+ <atkproperty name="AtkObject::accessible_name" translatable="yes">All available updates will be provided to this system. If kept updated, this system will always be equivalent to the latest minor release in the main 'Oracle Linux x' software channel.</atkproperty>
|
||||
</accessibility>
|
||||
</widget>
|
||||
<packing>
|
||||
@@ -5698,7 +5698,7 @@
|
||||
<child>
|
||||
<widget class="GtkImage" id="image24">
|
||||
<property name="visible">True</property>
|
||||
- <property name="pixbuf">puplet-screenshot.png</property>
|
||||
+ <property name="pixbuf">/usr/share/pixmaps/puplet-screenshot.png</property>
|
||||
<property name="xalign">0.5</property>
|
||||
<property name="yalign">0.5</property>
|
||||
<property name="xpad">0</property>
|
||||
diff -ruN rhn-client-tools-2.7.16.orig/rhn_register.desktop.in rhn-client-tools-2.7.16/rhn_register.desktop.in
|
||||
--- rhn-client-tools-2.7.16.orig/rhn_register.desktop.in 2017-08-09 09:58:44.000000000 -0700
|
||||
+++ rhn-client-tools-2.7.16/rhn_register.desktop.in 2017-08-25 12:59:14.417506710 -0700
|
||||
@@ -1,8 +1,8 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
-_Name=RHN Registration
|
||||
-_GenericName=Register for software updates from Spacewalk/Red Hat Satellite/Red Hat Network Classic
|
||||
-_Comment=Register to Spacewalk/Red Hat Satellite/Red Hat Network Classic.
|
||||
+_Name=Spacewalk Registration
|
||||
+_GenericName=Register for software updates from Spacewalk
|
||||
+_Comment=Register to Spacewalk
|
||||
Exec=rhn_register
|
||||
Icon=up2date
|
||||
Terminal=false
|
||||
diff -ruN rhn-client-tools-2.7.16.orig/src/firstboot-legacy-rhel6/rhn_choose_server_gui.py rhn-client-tools-2.7.16/src/firstboot-legacy-rhel6/rhn_choose_server_gui.py
|
||||
--- rhn-client-tools-2.7.16.orig/src/firstboot-legacy-rhel6/rhn_choose_server_gui.py 2017-08-09 09:58:44.000000000 -0700
|
||||
+++ rhn-client-tools-2.7.16/src/firstboot-legacy-rhel6/rhn_choose_server_gui.py 2017-08-25 12:59:14.484481715 -0700
|
||||
@@ -66,7 +66,7 @@
|
||||
try:
|
||||
self.rhsmActive = False
|
||||
if self.chooseServerPage.chooseServerPageApply() is False:
|
||||
- interface.moveToPage(moduleTitle=_("Red Hat Account"))
|
||||
+ interface.moveToPage(moduleTitle=_("Spacewalk account"))
|
||||
return RESULT_JUMP
|
||||
else:
|
||||
return RESULT_FAILURE
|
||||
diff -ruN rhn-client-tools-2.7.16.orig/src/firstboot-legacy-rhel6/rhn_login_gui.py rhn-client-tools-2.7.16/src/firstboot-legacy-rhel6/rhn_login_gui.py
|
||||
--- rhn-client-tools-2.7.16.orig/src/firstboot-legacy-rhel6/rhn_login_gui.py 2017-08-09 09:58:44.000000000 -0700
|
||||
+++ rhn-client-tools-2.7.16/src/firstboot-legacy-rhel6/rhn_login_gui.py 2017-08-25 12:59:14.578448881 -0700
|
||||
@@ -37,8 +37,8 @@
|
||||
def __init__(self):
|
||||
Module.__init__(self)
|
||||
self.priority = 108.5
|
||||
- self.sidebarTitle = _("Red Hat Account")
|
||||
- self.title = _("Red Hat Account")
|
||||
+ self.sidebarTitle = _("Spacewalk account")
|
||||
+ self.title = _("Spacewalk account")
|
||||
|
||||
def needsNetwork(self):
|
||||
return True
|
||||
diff -ruN rhn-client-tools-2.7.16.orig/src/up2date_client/rhnreg_constants.py rhn-client-tools-2.7.16/src/up2date_client/rhnreg_constants.py
|
||||
--- rhn-client-tools-2.7.16.orig/src/up2date_client/rhnreg_constants.py 2017-08-09 09:58:44.000000000 -0700
|
||||
+++ rhn-client-tools-2.7.16/src/up2date_client/rhnreg_constants.py 2017-08-25 12:59:14.648060321 -0700
|
||||
@@ -19,77 +19,77 @@
|
||||
COPYRIGHT_TEXT = _(u"Copyright © 2006--2014 Red Hat, Inc. All rights reserved.")
|
||||
|
||||
# Satellite URL Window
|
||||
-SATELLITE_URL_WINDOW = _("Enter your Red Hat Satellite URL.")
|
||||
-SATELLITE_URL_TEXT = _("Please enter the location of your Red Hat Satellite "
|
||||
+SATELLITE_URL_WINDOW = _("Enter your Spacewalk URL.")
|
||||
+SATELLITE_URL_TEXT = _("Please enter the location of your Spacewalk "
|
||||
"server and of its SSL "
|
||||
"certificate. The SSL certificate is only required "
|
||||
"if you will be connecting over https (recommended).")
|
||||
-SATELLITE_URL_PROMPT = _("Satellite URL:")
|
||||
+SATELLITE_URL_PROMPT = _("Spacewalk URL:")
|
||||
SATELLITE_URL_PROMPT2 = _("SSL certificate:")
|
||||
-SATELLITE_REQUIRED = _("You must enter a valid Satellite URL.")
|
||||
+SATELLITE_REQUIRED = _("You must enter a valid Spacewalk URL.")
|
||||
SSL_REQUIRED = _("If you are using https you must enter the location "
|
||||
"of a valid SSL certificate.")
|
||||
|
||||
# Connect Window
|
||||
CONNECT_WINDOW = _("Attempting to contact the Spacewalk server.")
|
||||
-CONNECT_WINDOW_TEXT = _("We are attempting to contact the Red Hat "
|
||||
- "Network server at %s.")
|
||||
+CONNECT_WINDOW_TEXT = _("We are attempting to contact the Spacewalk "
|
||||
+ " server at %s.")
|
||||
CONNECT_WINDOW_TEXT2 = _("A proxy was specified at %s.")
|
||||
|
||||
# Start Window
|
||||
START_REGISTER_WINDOW = _("System Registration")
|
||||
START_REGISTER_TEXT = _("This assistant will guide you through "
|
||||
"connecting your system to "
|
||||
- "Red Hat Satellite to receive software "
|
||||
+ "Spacewalk server to receive software "
|
||||
"updates, including "
|
||||
"security updates, to keep your system supported "
|
||||
"and compliant. "
|
||||
"You will need the following at this time:\n\n"
|
||||
" * A network connection\n"
|
||||
- " * Your Red Hat Login & password\n"
|
||||
- " * The location of a Red Hat Satellite "
|
||||
- "or Proxy\n\n")
|
||||
+ " * Your Spacewalk Login & password\n"
|
||||
+ " * The location of a Spacewalk server "
|
||||
+ "or Spacewalk Proxy\n\n")
|
||||
|
||||
# Why Register Window
|
||||
-WHY_REGISTER = _("Why Should I Connect to RHN? ...")
|
||||
+WHY_REGISTER = _("Why Should I Connect to Spacewalk? ...")
|
||||
WHY_REGISTER_WINDOW = _("Why Register")
|
||||
-WHY_REGISTER_TEXT = _("Connecting your system to Red Hat Satellite allows you to take full "
|
||||
+WHY_REGISTER_TEXT = _("Connecting your system to Spacewalk allows you to take full "
|
||||
"advantage of the benefits of a paid subscription, including:")
|
||||
WHY_REGISTER_SEC = _("Security & Updates:")
|
||||
WHY_REGISTER_DLD = _("Downloads & Upgrades:")
|
||||
WHY_REGISTER_SUPP = _("Support:")
|
||||
WHY_REGISTER_COMP = _("Compliance:")
|
||||
WHY_REGISTER_SEC_TXT = _("Receive the latest software updates, including security updates, keeping this "
|
||||
- "Red Hat Enterprise Linux system updated and secure.")
|
||||
-WHY_REGISTER_DLD_TXT = _("Download installation images for Red Hat Enterprise Linux releases, "
|
||||
+ "Oracle Linux system updated and secure.")
|
||||
+WHY_REGISTER_DLD_TXT = _("Download installation images for Oracle Linux releases, "
|
||||
"including new releases.")
|
||||
-WHY_REGISTER_SUPP_TXT = _("Access to the technical support experts at Red Hat or Red Hat's partners for help "
|
||||
+WHY_REGISTER_SUPP_TXT = _("Access to the technical support experts at Oracle for help "
|
||||
"with any issues you might encounter with this system.")
|
||||
WHY_REGISTER_COMP_TXT = _("Stay in compliance with your subscription agreement "
|
||||
"and manage subscriptions "
|
||||
"for systems connected to your account.")
|
||||
-WHY_REGISTER_TIP = _("Tip: Red Hat values your privacy: "
|
||||
- "http://www.redhat.com/legal/privacy_statement.html")
|
||||
+WHY_REGISTER_TIP = _("Tip: Oracle values your privacy: "
|
||||
+ "http://www.oracle.com/us/legal/privacy/overview/index.htm")
|
||||
BACK_REGISTER = _("Take me back to the registration")
|
||||
|
||||
# Confirm Quit Window
|
||||
CONFIRM_QUIT = _("Software Update Not Set Up")
|
||||
-CONFIRM_QUIT_SURE = _("Are you sure you don't want to connect your system to Red Hat Satellite? "
|
||||
- "You'll miss out on the benefits of a Red Hat Enterprise Linux subscription:\n")
|
||||
+CONFIRM_QUIT_SURE = _("Are you sure you don't want to connect your system to a Spacewalk server? "
|
||||
+ "You'll miss out on the benefits of a Oracle Linux subscription:\n")
|
||||
CONFIRM_QUIT_WILLNOT = _("You will not be able to take advantage of these subscription privileges without connecting "
|
||||
- "your system to Red Hat Satellite.\n")
|
||||
+ "your system to a Spacewalk server.\n")
|
||||
CONTINUE_REGISTERING = _("Take me back to the setup process.")
|
||||
REGISTER_LATER2 = _("I'll register later.")
|
||||
|
||||
# Info Window
|
||||
-REGISTER_WINDOW = _("Red Hat Account")
|
||||
-LOGIN_PROMPT = _("Please enter your login information for the %s Red "
|
||||
- "Hat Network Satellite:\n\n")
|
||||
-HOSTED_LOGIN = _("Red Hat Login:")
|
||||
+REGISTER_WINDOW = _("Spacewalk Account")
|
||||
+LOGIN_PROMPT = _("Please enter your login information for the %s Spacewalk "
|
||||
+ "server:\n\n")
|
||||
+HOSTED_LOGIN = _("Spacewalk Login:")
|
||||
LOGIN = _("Login:")
|
||||
PASSWORD = _("Password:")
|
||||
LOGIN_TIP = _("Tip: Forgot your login or password? Contact your "
|
||||
- "Satellite's Organization Administrator.")
|
||||
+ "Spacewalk's Organization Administrator.")
|
||||
USER_REQUIRED = _("Please enter a desired login.")
|
||||
PASSWORD_REQUIRED = _("Please enter and verify a password.")
|
||||
|
||||
@@ -108,7 +108,7 @@
|
||||
HARDWARE_WINDOW = _("Create Profile - Hardware")
|
||||
HARDWARE_WINDOW_DESC1 = _("A Profile Name is a descriptive name that"
|
||||
" you choose to identify this System Profile"
|
||||
- " on the Red Hat Satellite web pages. Optionally,"
|
||||
+ " on the Spacewalk web pages. Optionally,"
|
||||
" include a computer serial or identification number.")
|
||||
HARDWARE_WINDOW_DESC2 = _("Additional hardware information including PCI"
|
||||
" devices, disk sizes and mount points will be"
|
||||
@@ -135,52 +135,50 @@
|
||||
SYSTEM_ALREADY_REGISTERED_CONT = _("Are you sure you would like to continue?")
|
||||
|
||||
RHSM_SYSTEM_ALREADY_REGISTERED = _("This system has already been registered using Red Hat Subscription Management.\n\n"
|
||||
- "Your system is being registered again using Red Hat Satellite"
|
||||
- " or Red Hat Satellite Proxy technology. Red Hat recommends that customers only register once.\n\n"
|
||||
- "To learn more about RHN Classic/Red Hat Satellite registration and technologies please consult this"
|
||||
- " Knowledge Base Article: https://access.redhat.com/kb/docs/DOC-45563")
|
||||
+ "Your system is being registered again to a Spacewalk server"
|
||||
+ " or Spacewalk Proxy. Oracle recommends that customers only register once.\n\n"
|
||||
+ "To learn more about Spacewalk registration and technologies please consult the"
|
||||
+ " Spacewalk documentation library: http://docs.oracle.com/cd/E37670_01/index.html")
|
||||
|
||||
# Send Window
|
||||
-SEND_WINDOW = _("Send Profile Information to Red Hat Satellite")
|
||||
+SEND_WINDOW = _("Send Profile Information to Spacewalk")
|
||||
SEND_WINDOW_DESC = _("We are finished collecting information for the System Profile.\n\n"
|
||||
- "Press \"Next\" to send this System Profile to Red Hat Satellite. "
|
||||
+ "Press \"Next\" to send this System Profile to Spacewalk. "
|
||||
"Click \"Cancel\" and no information will be sent. "
|
||||
"You can run the registration program later by "
|
||||
"typing `rhn_register` at the command line.")
|
||||
|
||||
# Sending Window
|
||||
-SENDING_WINDOW = _("Sending Profile to Red Hat Satellite")
|
||||
+SENDING_WINDOW = _("Sending Profile to Spacewalk")
|
||||
|
||||
# Finish Window
|
||||
FINISH_WINDOW = _("Updates Configured")
|
||||
FINISH_WINDOW_TEXT_TUI = _("You may now run '%s update' from this system's "
|
||||
"command line to get the latest "
|
||||
- "software updates from Red Hat Satellite. You will need to run this "
|
||||
+ "software updates from Spacewalk. You will need to run this "
|
||||
"periodically to "
|
||||
"get the latest updates. Alternatively, you may configure this "
|
||||
"system for automatic software updates (also known as 'auto errata update') "
|
||||
- "via the Red Hat Satellite web interface. (Instructions for this are in chapter 6 "
|
||||
- "of the RHN Reference Guide, available from the 'Help' button in the main Red "
|
||||
- "Hat Network Satellite web interface.)") % PM_NAME
|
||||
+ "via the Spacewalk web interface. (Instructions for this are in chapter 6 "
|
||||
+ "of the Reference Guide, available from the 'Help' button in the main "
|
||||
+ "Spacewalk web interface.)") % PM_NAME
|
||||
|
||||
# Review Window
|
||||
REVIEW_WINDOW = _("Review Subscription")
|
||||
REVIEW_WINDOW_PROMPT = _("Please review the subscription details below:")
|
||||
SUB_NUM = _("The installation number %s was activated during "
|
||||
- "this system's initial connection to Red Hat Satellite.")
|
||||
+ "this system's initial connection to Spacewalk.")
|
||||
SUB_NUM_RESULT = _("Subscriptions have been activated for the following "
|
||||
- "Red Hat products/services:")
|
||||
+ "Oracle products/services:")
|
||||
CHANNELS_TITLE = _("Software Channel Subscriptions:")
|
||||
OK_CHANNELS = _("This system will receive updates from the "
|
||||
"following software channels:")
|
||||
CHANNELS_SAT_WARNING = _("Warning: Only installed product listed above will receive "
|
||||
"updates and support. If you would like "
|
||||
"to receive updates for additional products, please "
|
||||
- "login to your satellite web interface "
|
||||
+ "login to your Spacewalk web interface "
|
||||
"and subscribe this system to the appropriate "
|
||||
- "software channels. See Kbase article "
|
||||
- "for more details. "
|
||||
- "(http://kbase.redhat.com/faq/docs/DOC-11313)")
|
||||
+ "software channels. ")
|
||||
PM_PLUGIN_WARNING = _("Warning: %s is not present, could not enable it.\n"
|
||||
"Automatic updates will not work.") % (PM_PLUGIN_NAME)
|
||||
PM_PLUGIN_CONF_CHANGED = _("Note: %s has been enabled.") % (PM_PLUGIN_NAME)
|
||||
@@ -193,17 +191,17 @@
|
||||
NO_BASE_CHANNEL = _(
|
||||
"This system was unable to subscribe to any software channels. Your system "
|
||||
"will not receive any software updates to keep it secure and supported. "
|
||||
-"Contact your Satellite administrator about this problem. Once you make the "
|
||||
+"Contact your Spacewalk administrator about this problem. Once you make the "
|
||||
"appropriate active subscriptions available in your account, you may browse "
|
||||
-"to this system's profile in the RHN web interface and subscribe this system "
|
||||
+"to this system's profile in the Spacewalk web interface and subscribe this system "
|
||||
"to software channels via the software > software channels tab.")
|
||||
SLOTS_TITLE = _("Service Level:")
|
||||
-OK_SLOTS = _("Depending on what Red Hat Satellite modules are associated with a system, you'll "
|
||||
+OK_SLOTS = _("Depending on what Spacewalk modules are associated with a system, you'll "
|
||||
"enjoy different benefits. The following are the "
|
||||
- "Red Hat Satellite modules associated with this system:")
|
||||
+ "Spacewalk modules associated with this system:")
|
||||
SLOTS = SLOTS_TITLE + "\n" + OK_SLOTS + "\n%s"
|
||||
FAILED_SLOTS = _("This system was unable to be associated with the "
|
||||
- "following RHN module(s) because there were "
|
||||
+ "following Spacewalk module(s) because there were "
|
||||
"insufficient subscriptions available in your account:")
|
||||
MANAGEMENT = _("Management module: automatic updates, systems "
|
||||
"grouping, systems permissions, system package profiling, "
|
||||
@@ -215,40 +213,38 @@
|
||||
|
||||
|
||||
VIRT_FAILED = _("<b>Warning:</b> Any guest systems you create on this system "
|
||||
- "and register to RHN will consume Red Hat Enterprise Linux "
|
||||
+ "and register to Spacewalk will consume "
|
||||
"subscriptions beyond this host system's subscription. You will need "
|
||||
"to: (1) make a virtualization system entitlement available and "
|
||||
"(2) apply that system entitlement to this "
|
||||
- "system in RHN's web interface if you do not want virtual guests of "
|
||||
+ "system in Spacewalk's web interface if you do not want virtual guests of "
|
||||
"this system to consume additional subscriptions.")
|
||||
|
||||
NO_SYS_ENTITLEMENT = _("This system was unable to be associated with "
|
||||
-"any RHN service level modules. This system will not receive any software "
|
||||
-"updates to keep it secure and supported. Contace your Satellite administrator "
|
||||
+"any Spacewalk service level modules. This system will not receive any software "
|
||||
+"updates to keep it secure and supported. Contace your Spacewalk administrator "
|
||||
"about this problem. Once you make the "
|
||||
"appropriate active subscriptions available in your account, you may browse "
|
||||
-"to this system's profile in the RHN web interface, delete the profile, and "
|
||||
-"re-connect this system to Red Hat Satellite.")
|
||||
+"to this system's profile in the Spacewalk web interface, delete the profile, and "
|
||||
+"re-connect this system to the Spacewalk server.")
|
||||
ACTIVATION_KEY = _("Universal default activation key detected\n"
|
||||
"A universal default activation key was detected in your account. "
|
||||
"This means that a set of properties (software channel subscriptions, "
|
||||
"package installations, system group memberships, etc.) "
|
||||
- "for your system's connection to Red Hat Satellite or Red Hat Satellite Proxy"
|
||||
+ "for your system's connection to Spacewalk or a Spacewalk Proxy"
|
||||
"have been determined by the activation key rather than your "
|
||||
"installation number. "
|
||||
- "You may also refer to the RHN Reference Guide, section 6.4.6 for more details "
|
||||
- "about activation keys (http://access.redhat.com/knowledge/docs/Red_Hat_Network/)\n"
|
||||
"Universal Default activation key: %s")
|
||||
|
||||
# Error Messages.
|
||||
FATAL_ERROR = _("Fatal Error")
|
||||
WARNING = _("Warning")
|
||||
-HOSTED_CONNECTION_ERROR = _("We can't contact the Red Hat Satellite.\n\n"
|
||||
+HOSTED_CONNECTION_ERROR = _("We can't contact Spacewalk.\n\n"
|
||||
"Double check the location provided - is '%s' correct?\n"
|
||||
"If not, you can correct it and try again.\n\n"
|
||||
"Make sure that the network connection on this system is operational.\n\n"
|
||||
"This system will not be able to successfully receive software updates "
|
||||
- "from Red Hat without connecting to a Red Hat Satellite server")
|
||||
+ "from Red Hat without connecting to a Spacewalk server")
|
||||
|
||||
BASECHANNELERROR = _("Architecture: %s, OS Release: %s, OS "
|
||||
"Version: %s")
|
||||
@@ -260,7 +256,7 @@
|
||||
|
||||
SSL_CERT_ERROR_MSG = _("<b><span size=\"16000\">Incompatible Certificate File</span></b>\n\n"
|
||||
"The certificate you provided, <b>%s</b>, is not compatible with "
|
||||
- " the Red Hat Satellite server at <b>%s</b>. You may want to double-check"
|
||||
+ " the Spacewalk server at <b>%s</b>. You may want to double-check"
|
||||
" that you have provided a valid certificate file."
|
||||
" Are you sure you have provided the correct certificate, and that"
|
||||
" the certificate file has not been corrupted?\n\n"
|
||||
@@ -273,24 +269,21 @@
|
||||
SSL_CERT_FILE_NOT_FOUND_ERRER = _("Please verify the values of sslCACert and serverURL in "
|
||||
"/etc/sysconfig/rhn/up2date. You can either make the "
|
||||
"serverURL use http instead of https, or you can "
|
||||
- "download the SSL cert from your Satellite, place it "
|
||||
+ "download the SSL cert from your Spacewalk server, place it "
|
||||
"in /usr/share/rhn, and ensure sslCACert points to it.")
|
||||
|
||||
ACT_KEY_USAGE_LIMIT_ERROR = _("Problem registering system.\n\n"
|
||||
"A universal default activation key limits the "
|
||||
"number of systems which can connect to "
|
||||
- "the RHN organization associated with your "
|
||||
+ "the Spacewalk organization associated with your "
|
||||
"login. To allow this system to connect, "
|
||||
- "please contact your RHN organization "
|
||||
+ "please contact your Spacewalk organization "
|
||||
"administrator to increase the number of "
|
||||
"systems allowed to connect or to disable "
|
||||
- "this universal default activation key. "
|
||||
- "More details can be found in Red Hat "
|
||||
- "Knowledgebase Article #7924 at "
|
||||
- "http://kbase.redhat.com/faq/FAQ_61_7924.shtm ")
|
||||
+ "this universal default activation key. ")
|
||||
|
||||
CHANNEL_PAGE_TIP = _("\n Tip: Minor releases with a '*' are currently"
|
||||
- " supported by Red Hat.\n\n")
|
||||
+ " supported by Oracle.\n\n")
|
||||
|
||||
CHANNEL_PAGE_WARNING = _("Warning:You will not be able to limit this"
|
||||
" system to minor release that is older than"
|
||||
diff -ruN rhn-client-tools-2.7.16.orig/src/up2date_client/rhnregGui.py rhn-client-tools-2.7.16/src/up2date_client/rhnregGui.py
|
||||
--- rhn-client-tools-2.7.16.orig/src/up2date_client/rhnregGui.py 2017-08-09 09:58:44.000000000 -0700
|
||||
+++ rhn-client-tools-2.7.16/src/up2date_client/rhnregGui.py 2017-08-25 12:59:14.742079268 -0700
|
||||
@@ -329,7 +329,7 @@
|
||||
log.log_exception(*sys.exc_info())
|
||||
protocol, host, path, parameters, query, fragmentIdentifier = urlparse.urlparse(config.getServerlURL()[0])
|
||||
dialog = messageWindow.BulletedOkDialog(_("Cannot contact selected server"))
|
||||
- dialog.add_text(_("We could not contact the Satellite or Proxy "
|
||||
+ dialog.add_text(_("We could not contact the Spacewalk server or Proxy "
|
||||
"at '%s.'") % host)
|
||||
dialog.add_bullet(_("Double-check the location - is '%s' "
|
||||
"correct? If not, you can correct it and "
|
||||
@@ -1324,7 +1324,7 @@
|
||||
logFile = cfg['logFile'] or '/var/log/up2date'
|
||||
message = message + "\n" + (_("This error shouldn't have happened. If you'd "
|
||||
"like to help us improve this program, please "
|
||||
- "file a bug at bugzilla.redhat.com. Including "
|
||||
+ "file a SR at My Oracle Support . Including "
|
||||
"the relevant parts of '%s' would be very "
|
||||
"helpful. Thanks!") % logFile)
|
||||
errorWindow(message)
|
||||
diff -ruN rhn-client-tools-2.7.16.orig/src/up2date_client/up2dateErrors.py rhn-client-tools-2.7.16/src/up2date_client/up2dateErrors.py
|
||||
--- rhn-client-tools-2.7.16.orig/src/up2date_client/up2dateErrors.py 2017-08-09 09:58:44.000000000 -0700
|
||||
+++ rhn-client-tools-2.7.16/src/up2date_client/up2dateErrors.py 2017-08-25 12:59:14.835558916 -0700
|
||||
@@ -300,11 +300,9 @@
|
||||
def changeExplanation(self, msg):
|
||||
newExpln = _("""
|
||||
Your organization does not have enough Management entitlements to register this
|
||||
- system to Red Hat Satellite. Please notify your organization administrator of this error.
|
||||
+ system to Spacewalk. Please notify your organization administrator of this error.
|
||||
You should be able to register this system after your organization frees existing
|
||||
- or purchases additional entitlements. Additional entitlements may be purchased by your
|
||||
- organization administrator by logging into Red Hat Network Classic and visiting
|
||||
- the 'Subscription Management' page in the 'Your RHN' section of RHN.
|
||||
+ or purchases additional entitlements.
|
||||
|
||||
A common cause of this error code is due to having mistakenly setup an
|
||||
Activation Key which is set as the universal default. If an activation key is set
|
@ -0,0 +1,19 @@
|
||||
This is to fix OL9 systems to register with ULN. The platform dist no longer available
|
||||
in OL9 and dist not used in up2dateErrors.py file. The fix is to remove unused dist from
|
||||
up2dateErrors.py file.
|
||||
|
||||
Orabug: 33858443
|
||||
Signed-off-by: PSM Swamiji <psm.swamiji@oracle.com>
|
||||
Signed-off-by: Darren Archibald <darren.archibald@oracle.com>
|
||||
---
|
||||
diff -ruN rhn-client-tools-2.10.10/src/up2date_client/up2dateErrors.py.orig rhn-client-tools-2.10.10/src/up2date_client/up2dateErrors.py
|
||||
--- rhn-client-tools-2.10.10/src/up2date_client/up2dateErrors.py.orig 2022-02-22 09:28:17.442866600 +0530
|
||||
+++ rhn-client-tools-2.10.10/src/up2date_client/up2dateErrors.py 2022-02-22 10:32:09.148452800 +0530
|
||||
@@ -27,7 +27,6 @@
|
||||
t.ugettext = t.gettext
|
||||
_ = t.ugettext
|
||||
import OpenSSL
|
||||
-from platform import dist
|
||||
from rhn.i18n import ustr
|
||||
from up2date_client import config
|
||||
from up2date_client import up2dateLog
|
1600
SPECS/rhn-client-tools.spec
Normal file
1600
SPECS/rhn-client-tools.spec
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user