summaryrefslogtreecommitdiffstats
path: root/ipaserver/install/cainstance.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipaserver/install/cainstance.py')
-rw-r--r--ipaserver/install/cainstance.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/ipaserver/install/cainstance.py b/ipaserver/install/cainstance.py
index 585bccef1..aedee8cfb 100644
--- a/ipaserver/install/cainstance.py
+++ b/ipaserver/install/cainstance.py
@@ -614,8 +614,17 @@ class CAInstance(service.Service):
args.append("-clone")
args.append("false")
+ # Define the things we don't want logged
+ nolog = (('-client_certdb_pwd', 1),
+ ('-admin_password', 1),
+ ('-bind_password', 1),
+ ('-backup_pwd', 1),
+ ('-clone_p12_password', 1),
+ ('-sd_admin_password', 1),
+ )
+
logging.debug(args)
- ipautil.run(args)
+ ipautil.run(args, nolog=nolog)
if self.external == 1:
print "The next step is to get %s signed by your CA and re-run ipa-server-install as:" % self.csr_file