From 709e3ddc5c9a37c8253a8736f5a8bfec37f86ada Mon Sep 17 00:00:00 2001 From: Martin Kosek Date: Tue, 20 Sep 2011 11:15:52 +0200 Subject: 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 --- install/tools/ipactl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install/tools/ipactl') 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") -- cgit