From 7f38cff9897a3b6309969c6f7cad23bbdf1a2043 Mon Sep 17 00:00:00 2001 From: James Cammarata Date: Wed, 12 Mar 2014 09:33:19 -0500 Subject: [PATCH] Remove unused code from get_ca_certs() function --- lib/ansible/module_utils/urls.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/lib/ansible/module_utils/urls.py b/lib/ansible/module_utils/urls.py index 878499ce682..2a484a89d60 100644 --- a/lib/ansible/module_utils/urls.py +++ b/lib/ansible/module_utils/urls.py @@ -77,11 +77,10 @@ class SSLValidationHandler(urllib2.BaseHandler): http://techknack.net/python-urllib2-handlers/ ''' - def __init__(self, module, hostname, port, ca_cert=None): + def __init__(self, module, hostname, port): self.module = module self.hostname = hostname self.port = port - self.ca_cert = ca_cert def get_ca_certs(self): # tries to find a valid CA cert in one of the @@ -92,11 +91,6 @@ class SSLValidationHandler(urllib2.BaseHandler): platform = get_platform() distribution = get_distribution() - if self.ca_cert: - # the user provided a custom CA cert (ie. one they - # uploaded themselves), so add it to the list first - ca_certs.append(self.ca_cert) - # build a list of paths to check for .crt/.pem files # based on the platform type paths_checked.append('/etc/ssl/certs')