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:54 +0100
commitab714828363ae7d1fa0198f2d1557e818480d534 (patch)
tree520183a0d550e72ece6b2b258f2d535d3dceffae /ipaserver
parent42fc4aed6b34c67e904191b6a52e877708516404 (diff)
downloadfreeipa.git-ab714828363ae7d1fa0198f2d1557e818480d534.tar.gz
freeipa.git-ab714828363ae7d1fa0198f2d1557e818480d534.tar.xz
freeipa.git-ab714828363ae7d1fa0198f2d1557e818480d534.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 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,)