Greetings, export_pem_cert function from ipapython/certdb should export the certificate in pem format but instead exports the cert in der format as it doesn't enable pem=True.
This patch specifies pem=True for export_pem_cert function Regards Niranjan
From 85c28405e80efbf65c013f3b615bdacee12856b5 Mon Sep 17 00:00:00 2001 From: Niranjan MR <[email protected]> Date: Tue, 27 Oct 2015 01:22:05 +0530 Subject: [PATCH] enable pem=True in export_pem_cert function export_pem_cert should export the certificate in pem format but instead exports the cert in der format as it doesn't enable pem=True. This patch specifies pem=True for export_pem_cert function Signed-off-by: Niranjan MR <[email protected]> --- ipapython/certdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipapython/certdb.py b/ipapython/certdb.py index d6de01100f323c4aa318dc78aabd39b35501f008..704bae528b44a3a3b978d25982a7e75a8e3af0f6 100644 --- a/ipapython/certdb.py +++ b/ipapython/certdb.py @@ -417,7 +417,7 @@ class NSSDatabase(object): def export_pem_cert(self, nickname, location): """Export the given cert to PEM file in the given location""" - cert = self.get_cert(nickname) + cert = self.get_cert(nickname, pem=True) with open(location, "w+") as fd: fd.write(cert) os.chmod(location, 0o444) -- 1.9.3
pgpED6qEWFtF6.pgp
Description: PGP signature
-- Manage your subscription for the Freeipa-devel mailing list: https://www.redhat.com/mailman/listinfo/freeipa-devel Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code
