summaryrefslogtreecommitdiffstats
path: root/install/tools
diff options
context:
space:
mode:
authorMartin Kosek <mkosek@redhat.com>2011-09-20 10:11:35 +0200
committerMartin Kosek <mkosek@redhat.com>2011-09-20 10:50:42 +0200
commit60c2692fc7c0f0efb8ae61aa39a1ee1126d0570b (patch)
tree43d741e91dda652c59cc037f94821d999cfa6e48 /install/tools
parent7a4295ef1ae1d4e7d51d4c7072102694243873e2 (diff)
downloadfreeipa-60c2692fc7c0f0efb8ae61aa39a1ee1126d0570b.tar.gz
freeipa-60c2692fc7c0f0efb8ae61aa39a1ee1126d0570b.tar.xz
freeipa-60c2692fc7c0f0efb8ae61aa39a1ee1126d0570b.zip
ipactl does not stop dirsrv
Remove an invalid instance name passed to dirsrv service so that it is correctly stopped. https://fedorahosted.org/freeipa/ticket/1800
Diffstat (limited to 'install/tools')
-rwxr-xr-xinstall/tools/ipactl2
1 files changed, 1 insertions, 1 deletions
diff --git a/install/tools/ipactl b/install/tools/ipactl
index cab11c94b..63e69ec59 100755
--- a/install/tools/ipactl
+++ b/install/tools/ipactl
@@ -247,7 +247,7 @@ def ipa_stop(options):
try:
print "Stopping Directory Service"
- dirsrv.stop('dirsrv', capture_output=False)
+ dirsrv.stop(capture_output=False)
except:
raise IpactlError("Failed to stop Directory Service")