summaryrefslogtreecommitdiffstats
path: root/install
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:35 +0200
commitf35358e2bcfb617fad6a2941fac6c6d160018637 (patch)
tree28169530abfcae29e46e0035751c3d7ec0123cd4 /install
parent60c2692fc7c0f0efb8ae61aa39a1ee1126d0570b (diff)
downloadfreeipa-f35358e2bcfb617fad6a2941fac6c6d160018637.tar.gz
freeipa-f35358e2bcfb617fad6a2941fac6c6d160018637.tar.xz
freeipa-f35358e2bcfb617fad6a2941fac6c6d160018637.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')
-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")