ceph/teuthology/task/clock.py
Sage Weil f1d66d2dd5 schedule_suite.sh: check, but do not sync, clock for each run
Trust NTP to actually sync things.  But check the clock skew so we can
verify it if something seems off.

Signed-off-by: Sage Weil <sage@inktank.com>
2013-03-09 21:34:24 -08:00

90 lines
2.1 KiB
Python

import logging
import contextlib
from ..orchestra import run
log = logging.getLogger(__name__)
@contextlib.contextmanager
def task(ctx, config):
"""
Sync or skew clock
This will initially sync the clocks. Eventually it should let us also
skew by some number of seconds.
example:
tasks:
- clock:
- ceph:
- interactive:
to sync.
"""
log.info('Syncing clocks and checking initial clock skew...')
for rem in ctx.cluster.remotes.iterkeys():
rem.run(
args=[
'sudo',
'service', 'ntp', 'stop',
run.Raw(';'),
'sudo',
'ntpdate',
# 'clock1.dreamhost.com',
# 'clock2.dreamhost.com',
# 'clock3.dreamhost.com',
# 'time.apple.com',
'0.debian.pool.ntp.org',
'1.debian.pool.ntp.org',
'2.debian.pool.ntp.org',
'3.debian.pool.ntp.org',
run.Raw(';'),
'sudo',
'service', 'ntp', 'start',
run.Raw(';'),
'ntpdc', '-p',
],
logger=log.getChild(rem.name),
)
try:
yield
finally:
log.info('Checking final clock skew...')
for rem in ctx.cluster.remotes.iterkeys():
rem.run(
args=[
'ntpdc', '-p',
],
logger=log.getChild(rem.name),
)
@contextlib.contextmanager
def check(ctx, config):
log.info('Checking initial clock skew...')
for rem in ctx.cluster.remotes.iterkeys():
rem.run(
args=[
'ntpdc', '-p',
],
logger=log.getChild(rem.name),
)
try:
yield
finally:
log.info('Checking final clock skew...')
for rem in ctx.cluster.remotes.iterkeys():
rem.run(
args=[
'ntpdc', '-p',
],
logger=log.getChild(rem.name),
)