Blame SOURCES/0101-ureport-use-entit-certs-with-rhsm-and-drop-rhsm-enti.patch

28bab8
From b3ae09a48cf7cb21e3562509717381e4c4133454 Mon Sep 17 00:00:00 2001
28bab8
From: Jakub Filak <jfilak@redhat.com>
28bab8
Date: Wed, 22 Oct 2014 08:12:44 +0200
28bab8
Subject: [LIBREPORT PATCH 101/105] ureport: use entit certs with 'rhsm' and
28bab8
 drop 'rhsm-entitlement'
28bab8
28bab8
/etc/pki/consumer certificates cannot be used for authentication in
28bab8
Strata. Martin Milata has correctly pointed out that it does not make
28bab8
sense to have both 'rhsm' and 'rhsm-entitlement' options.
28bab8
28bab8
Related #1140224
28bab8
28bab8
Signed-off-by: Jakub Filak <jfilak@redhat.com>
28bab8
---
28bab8
 doc/reporter-ureport.txt |  6 ++----
28bab8
 src/lib/ureport.c        | 11 -----------
28bab8
 src/plugins/ureport.conf |  4 +---
28bab8
 3 files changed, 3 insertions(+), 18 deletions(-)
28bab8
28bab8
diff --git a/doc/reporter-ureport.txt b/doc/reporter-ureport.txt
28bab8
index 807f1e1..1a67441 100644
28bab8
--- a/doc/reporter-ureport.txt
28bab8
+++ b/doc/reporter-ureport.txt
28bab8
@@ -35,10 +35,8 @@ Configuration file lines should have 'PARAM = VALUE' format. The parameters are:
28bab8
    Possible values are:
28bab8
 
28bab8
    'rhsm';;
28bab8
-      Uses the system certificate that is used for Red Hat subscription management.
28bab8
-
28bab8
-   'rhsm-entitlement';;
28bab8
-      Same as 'rhsm' but uses the V3 RHSM entitlement certificates.
28bab8
+      Uses the system V3 entitlement certificate that is used for Red Hat
28bab8
+      subscription management.
28bab8
 
28bab8
    'puppet';;
28bab8
       Uses the certificate that is used by the Puppet configuration management tool.
28bab8
diff --git a/src/lib/ureport.c b/src/lib/ureport.c
28bab8
index 99e84ef..5782b4e 100644
28bab8
--- a/src/lib/ureport.c
28bab8
+++ b/src/lib/ureport.c
28bab8
@@ -32,9 +32,6 @@
28bab8
 
28bab8
 #define RHSM_WEB_SERVICE_URL "https://api.access.redhat.com/rs/telemetry/abrt"
28bab8
 
28bab8
-#define RHSM_CERT_PATH "/etc/pki/consumer/cert.pem"
28bab8
-#define RHSM_KEY_PATH "/etc/pki/consumer/key.pem"
28bab8
-
28bab8
 #define RHSMENT_PEM_DIR_PATH "/etc/pki/entitlement"
28bab8
 #define RHSMENT_ENT_DATA_BEGIN_TAG "-----BEGIN ENTITLEMENT DATA-----"
28bab8
 #define RHSMENT_ENT_DATA_END_TAG "-----END ENTITLEMENT DATA-----"
28bab8
@@ -94,14 +91,6 @@ ureport_server_config_set_client_auth(struct ureport_server_config *config,
28bab8
         if (config->ur_url == NULL)
28bab8
             ureport_server_config_set_url(config, xstrdup(RHSM_WEB_SERVICE_URL));
28bab8
 
28bab8
-        config->ur_client_cert = xstrdup(RHSM_CERT_PATH);
28bab8
-        config->ur_client_key = xstrdup(RHSM_KEY_PATH);
28bab8
-    }
28bab8
-    else if (strcmp(client_auth, "rhsm-entitlement") == 0)
28bab8
-    {
28bab8
-        if (config->ur_url == NULL)
28bab8
-            ureport_server_config_set_url(config, xstrdup(RHSM_WEB_SERVICE_URL));
28bab8
-
28bab8
         GList *certs = get_file_list(RHSMENT_PEM_DIR_PATH, "pem");
28bab8
         if (g_list_length(certs) < 2)
28bab8
         {
28bab8
diff --git a/src/plugins/ureport.conf b/src/plugins/ureport.conf
28bab8
index e7bd66b..9e0415f 100644
28bab8
--- a/src/plugins/ureport.conf
28bab8
+++ b/src/plugins/ureport.conf
28bab8
@@ -22,10 +22,8 @@ AuthDataItems = hostname, machineid
28bab8
 # 'IncludeAuthData' to 'yes'.
28bab8
 # None (default):
28bab8
 # SSLClientAuth =
28bab8
-# Using RH subscription management certificate:
28bab8
-# SSLClientAuth = rhsm
28bab8
 # Using RH subscription management entitlement certificate:
28bab8
-# SSLClientAuth = rhsm-entitlement
28bab8
+# SSLClientAuth = rhsm
28bab8
 # Using Puppet certificate:
28bab8
 # SSLClientAuth = puppet
28bab8
 # Using custom certificate:
28bab8
-- 
28bab8
1.8.3.1
28bab8