summaryrefslogtreecommitdiffstats
path: root/ipaserver
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2012-03-13 21:53:06 -0400
committerMartin Kosek <mkosek@redhat.com>2012-03-21 10:08:43 +0100
commit8f71f42ef7c7c67c0d0ee47814715e2c023d95ce (patch)
tree89fa36323c44af97332347e6b2c2621216e607e9 /ipaserver
parent4a2f812eb4b1e42c7dc02b4a5485c81e10abed70 (diff)
downloadfreeipa-8f71f42ef7c7c67c0d0ee47814715e2c023d95ce.tar.gz
freeipa-8f71f42ef7c7c67c0d0ee47814715e2c023d95ce.tar.xz
freeipa-8f71f42ef7c7c67c0d0ee47814715e2c023d95ce.zip
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
Diffstat (limited to 'ipaserver')
-rw-r--r--ipaserver/install/cainstance.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/ipaserver/install/cainstance.py b/ipaserver/install/cainstance.py
index 948bc2d02..f953100be 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,)