From 8f71f42ef7c7c67c0d0ee47814715e2c023d95ce Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Tue, 13 Mar 2012 21:53:06 -0400 Subject: No longer shell escape the DM password when calling pkisilent. pkisilent was modified to handle escaping characters itself in BZ https://bugzilla.redhat.com/show_bug.cgi?id=769388 This removes the workaround from ticket 1636. https://fedorahosted.org/freeipa/ticket/2529 --- ipaserver/install/cainstance.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'ipaserver/install/cainstance.py') diff --git a/ipaserver/install/cainstance.py b/ipaserver/install/cainstance.py index 948bc2d0..f953100b 100644 --- a/ipaserver/install/cainstance.py +++ b/ipaserver/install/cainstance.py @@ -660,9 +660,6 @@ class CAInstance(service.Service): args.append("-clone") args.append("false") - # pkisilent does not escape the arguments before passing them to shell - args[2:] = [ipautil.shell_quote(i) for i in args[2:]] - # Define the things we don't want logged nolog = (self.admin_password, self.dm_password,) -- cgit