From 9a8dcd1a18b461ae9164a1d0718f7d51e17b7fd6 Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Tue, 30 Aug 2011 17:15:46 +0300 Subject: Convert ipa-client/ bits --- 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