summaryrefslogtreecommitdiffstats
path: root/ipa-client/ipa-install
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2012-09-04 05:15:31 -0400
committerMartin Kosek <mkosek@redhat.com>2012-09-04 18:32:04 +0200
commit5bcbe1df3719eab06eebd930bef0077c34fc5b38 (patch)
tree9db37729686c71407f13bacaa65edea15a4ca36f /ipa-client/ipa-install
parented44de17ff1ec8f5f85b925cb9169e5455967d1f (diff)
downloadfreeipa-5bcbe1df3719eab06eebd930bef0077c34fc5b38.tar.gz
freeipa-5bcbe1df3719eab06eebd930bef0077c34fc5b38.tar.xz
freeipa-5bcbe1df3719eab06eebd930bef0077c34fc5b38.zip
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
Diffstat (limited to 'ipa-client/ipa-install')
-rwxr-xr-xipa-client/ipa-install/ipa-client-install4
1 files changed, 2 insertions, 2 deletions
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.")