ceph/teuthology/task/sleep.py

30 lines
526 B
Python
Raw Normal View History

2013-07-19 18:26:58 +00:00
import logging
import time
from teuthology import misc as teuthology
from ..orchestra import run
log = logging.getLogger(__name__)
def task(ctx, config):
"""
Sleep for some number of seconds.
Example::
tasks:
- install:
- ceph:
- sleep:
duration: 10
- interactive:
"""
if not config:
config = {}
assert isinstance(config, dict)
duration = int(config.get('duration', 5))
log.info('Sleeping for %d', duration)
time.sleep(duration)