From 5bcbe1df3719eab06eebd930bef0077c34fc5b38 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Tue, 4 Sep 2012 05:15:31 -0400 Subject: Run ntpdate in verbose mode, not debug (i.e. no-op) mode Remove the debug argument to synconce_ntp since we always want the logs to be verbose. https://fedorahosted.org/freeipa/ticket/3048 --- ipa-client/ipa-install/ipa-client-install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipa-client/ipa-install') diff --git a/ipa-client/ipa-install/ipa-client-install b/ipa-client/ipa-install/ipa-client-install index 2e65921e8..d87fcc2a6 100755 --- a/ipa-client/ipa-install/ipa-client-install +++ b/ipa-client/ipa-install/ipa-client-install @@ -1421,11 +1421,11 @@ def install(options, env, fstore, statestore): synced_ntp = False if ntp_servers: for s in ntp_servers: - synced_ntp = ipaclient.ntpconf.synconce_ntp(s, debug=True) + synced_ntp = ipaclient.ntpconf.synconce_ntp(s) if synced_ntp: break if not synced_ntp: - synced_ntp = ipaclient.ntpconf.synconce_ntp(cli_server[0], debug=True) + synced_ntp = ipaclient.ntpconf.synconce_ntp(cli_server[0]) if not synced_ntp: root_logger.warning("Unable to sync time with IPA NTP " + "server, assuming the time is in sync.") -- cgit