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

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