URL: https://github.com/freeipa/freeipa/pull/450
Author: stlaz
 Title: #450: Add FIPS-token password of HTTPD NSS database
Action: synchronized

To pull the PR as Git branch:
git remote add ghfreeipa https://github.com/freeipa/freeipa
git fetch ghfreeipa pull/450/head:pr450
git checkout pr450
From 289934cf5ae46a272e99571133c10c0a87cbcf95 Mon Sep 17 00:00:00 2001
From: Stanislav Laznicka <slazn...@redhat.com>
Date: Mon, 9 Jan 2017 08:45:33 +0100
Subject: [PATCH] Add FIPS-token password of HTTPD NSS database

This change is required for httpd to function properly in FIPS

https://fedorahosted.org/freeipa/ticket/5695
---
 ipaserver/install/certs.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/ipaserver/install/certs.py b/ipaserver/install/certs.py
index 80918d4..9d69540 100644
--- a/ipaserver/install/certs.py
+++ b/ipaserver/install/certs.py
@@ -504,7 +504,10 @@ def create_password_conf(self):
         f = open(self.pwd_conf, "w")
         f.write("internal:")
         pwdfile = open(self.passwd_fname)
-        f.write(pwdfile.read())
+        password = pwdfile.read()
+        f.write(password)
+        f.write("\nNSS FIPS 140-2 Certificate DB:")
+        f.write(password)
         f.close()
         pwdfile.close()
         self.set_perms(self.pwd_conf, uid=constants.HTTPD_USER)
-- 
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

Reply via email to