From 5ab85b365ae886558b1f077b0d039a0d24bebfa7 Mon Sep 17 00:00:00 2001 From: Stanislav Laznicka Date: Fri, 13 Jan 2017 09:08:42 +0100 Subject: Moving ipaCert from HTTPD_ALIAS_DIR The "ipaCert" nicknamed certificate is not required to be in /var/lib/ipa/radb NSSDB anymore as we were keeping a copy of this file in a separate file anyway. Remove it from there and track only the file. Remove the IPA_RADB_DIR as well as it is not required anymore. https://fedorahosted.org/freeipa/ticket/5695 https://fedorahosted.org/freeipa/ticket/6680 Reviewed-By: Jan Cholasta --- ipatests/test_xmlrpc/testcert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipatests') diff --git a/ipatests/test_xmlrpc/testcert.py b/ipatests/test_xmlrpc/testcert.py index def820f16..c27ea95b0 100644 --- a/ipatests/test_xmlrpc/testcert.py +++ b/ipatests/test_xmlrpc/testcert.py @@ -79,7 +79,7 @@ def makecert(reqdir, subject, principal): """ ra = rabase.rabase(api) - if (not os.path.exists(ra.sec_dir) and + if (not os.path.exists(ra.client_certfile) and api.env.xmlrpc_uri == 'http://localhost:8888/ipa/xml'): raise AssertionError('The self-signed CA is not configured, ' 'see ipatests/test_xmlrpc/test_cert.py') -- cgit