summaryrefslogtreecommitdiffstats
path: root/ipaserver/install/bindinstance.py
diff options
context:
space:
mode:
authorAlexander Bokovoy <abokovoy@redhat.com>2011-09-13 10:47:13 +0300
committerMartin Kosek <mkosek@redhat.com>2011-09-13 11:14:18 +0200
commita02e0514f60f8ce5716876717b77e8712cc38396 (patch)
tree4bd64a56e9a0093e859767a18b1eed6d73afb216 /ipaserver/install/bindinstance.py
parentb996a41177df9e41426155d3445dc20b0657c9d5 (diff)
downloadfreeipa-a02e0514f60f8ce5716876717b77e8712cc38396.tar.gz
freeipa-a02e0514f60f8ce5716876717b77e8712cc38396.tar.xz
freeipa-a02e0514f60f8ce5716876717b77e8712cc38396.zip
Convert server install code to platform-independent access to system services
https://fedorahosted.org/freeipa/ticket/1605
Diffstat (limited to 'ipaserver/install/bindinstance.py')
-rw-r--r--ipaserver/install/bindinstance.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaserver/install/bindinstance.py b/ipaserver/install/bindinstance.py
index c91b62061..cdf7b939d 100644
--- a/ipaserver/install/bindinstance.py
+++ b/ipaserver/install/bindinstance.py
@@ -615,7 +615,7 @@ class BindInstance(service.Service):
pass
if not enabled is None and not enabled:
- self.chkconfig_off()
+ self.disable()
if not running is None and running:
self.start()