summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ipapython/dogtag.py4
-rw-r--r--ipaserver/install/cainstance.py2
2 files changed, 4 insertions, 2 deletions
diff --git a/ipapython/dogtag.py b/ipapython/dogtag.py
index 20f2643b..df569c44 100644
--- a/ipapython/dogtag.py
+++ b/ipapython/dogtag.py
@@ -74,8 +74,8 @@ def https_request(host, port, url, secdir, password, nickname, **kw):
host = host.encode('utf-8')
uri = 'https://%s%s' % (ipautil.format_netloc(host, port), url)
post = urlencode(kw)
- root_logger.info('sslget %r', uri)
- root_logger.debug('sslget post %r', post)
+ root_logger.debug('https_request %r', uri)
+ root_logger.debug('https_request post %r', post)
request_headers = {"Content-type": "application/x-www-form-urlencoded",
"Accept": "text/plain"}
try:
diff --git a/ipaserver/install/cainstance.py b/ipaserver/install/cainstance.py
index 692a53d4..d2c8d057 100644
--- a/ipaserver/install/cainstance.py
+++ b/ipaserver/install/cainstance.py
@@ -746,6 +746,7 @@ class CAInstance(service.Service):
# mod_nss.
args = [
'/usr/bin/sslget',
+ '-v',
'-n', 'ipa-ca-agent',
'-p', self.admin_password,
'-d', self.ca_agent_db,
@@ -765,6 +766,7 @@ class CAInstance(service.Service):
# Now issue the RA certificate.
args = [
'/usr/bin/sslget',
+ '-v',
'-n', 'ipa-ca-agent',
'-p', self.admin_password,
'-d', self.ca_agent_db,