summaryrefslogtreecommitdiffstats
path: root/install/tools/ipactl
diff options
context:
space:
mode:
authorMartin Kosek <mkosek@redhat.com>2011-09-20 11:15:52 +0200
committerMartin Kosek <mkosek@redhat.com>2011-09-20 12:41:26 +0200
commit709e3ddc5c9a37c8253a8736f5a8bfec37f86ada (patch)
tree169cbd7d71245c84dcccc908f6746c421a22e789 /install/tools/ipactl
parente49b0e6c09edc30990d0bb95db69b569016424f4 (diff)
downloadfreeipa-709e3ddc5c9a37c8253a8736f5a8bfec37f86ada.tar.gz
freeipa-709e3ddc5c9a37c8253a8736f5a8bfec37f86ada.tar.xz
freeipa-709e3ddc5c9a37c8253a8736f5a8bfec37f86ada.zip
dirsrv is not stopped correctly in the fallback
The previous patch fixed ipactl stop command. However, the dirsrv stop in the ipactl start command fallback was not right either. https://fedorahosted.org/freeipa/ticket/1800
Diffstat (limited to 'install/tools/ipactl')
-rwxr-xr-xinstall/tools/ipactl2
1 files changed, 1 insertions, 1 deletions
diff --git a/install/tools/ipactl b/install/tools/ipactl
index 63e69ec59..4055cf91b 100755
--- a/install/tools/ipactl
+++ b/install/tools/ipactl
@@ -206,7 +206,7 @@ def ipa_start(options):
except:
pass
try:
- svchandle.stop('dirsrv', capture_output=False)
+ dirsrv.stop(capture_output=False)
except:
pass
raise IpactlError("Aborting ipactl")