diff options
author | Martin Kosek <mkosek@redhat.com> | 2011-09-20 11:15:52 +0200 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2011-09-20 12:41:26 +0200 |
commit | 709e3ddc5c9a37c8253a8736f5a8bfec37f86ada (patch) | |
tree | 169cbd7d71245c84dcccc908f6746c421a22e789 /install/tools | |
parent | e49b0e6c09edc30990d0bb95db69b569016424f4 (diff) | |
download | freeipa-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')
-rwxr-xr-x | install/tools/ipactl | 2 |
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") |