From: Dan Mick Date: Fri, 13 Jan 2017 22:49:05 +0000 (-0800) Subject: Use clock by default (instead of clock.check) X-Git-Tag: 1.1.0~462^2~1 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=f5d9712f95891d34a36b529cb37f05a1a6de2698;p=teuthology.git Use clock by default (instead of clock.check) We're seeing clocks desynchronized. My theory is that this might be because ntp can take five minutes or more to actually sync the clocks, and clock.check doesn't do any setting of the clocks, just reporting. clock, OTOH, stops ntpd and does an ntpdate, and then restarts ntpd, which should kickstart it with a much-closer-to-correct time. Signed-off-by: Dan Mick --- diff --git a/teuthology/run.py b/teuthology/run.py index 35070182b6..4782efda2c 100644 --- a/teuthology/run.py +++ b/teuthology/run.py @@ -234,7 +234,7 @@ def get_initial_tasks(lock, config, machine_type): {'pcp': None}, {'selinux': None}, {'ansible.cephlab': None}, - {'clock.check': None} + {'clock': None} ]) return init_tasks