From 45e379d5bf94170ccce16e6e2af8c5ccc55c826b Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Tue, 13 Sep 2011 00:11:24 +0300 Subject: Convert client-side tools to platform-independent access to system services https://fedorahosted.org/freeipa/ticket/1605 --- ipa-client/ipaclient/ntpconf.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'ipa-client/ipaclient') diff --git a/ipa-client/ipaclient/ntpconf.py b/ipa-client/ipaclient/ntpconf.py index 6054e5e59..3042005f4 100644 --- a/ipa-client/ipaclient/ntpconf.py +++ b/ipa-client/ipaclient/ntpconf.py @@ -18,6 +18,7 @@ # from ipapython import ipautil +from ipapython import services as ipaservices import shutil ntp_conf = """# Permit time synchronization with our time source, but do not @@ -105,7 +106,7 @@ def config_ntp(server_fqdn, fstore = None): fd.close() # Set the ntpd to start on boot - ipautil.run(["/sbin/chkconfig", "ntpd", "on"]) + ipaservices.knownservices.ntpd.enable() # Restart ntpd - ipautil.run(["/sbin/service", "ntpd", "restart"]) + ipaservices.knownservices.ntpd.restart() -- cgit