mirror of
https://github.com/ceph/ceph
synced 2024-12-27 05:53:20 +00:00
33 lines
532 B
Python
33 lines
532 B
Python
"""
|
|
Sleep task
|
|
"""
|
|
import logging
|
|
import time
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
def task(ctx, config):
|
|
"""
|
|
Sleep for some number of seconds.
|
|
|
|
Example::
|
|
|
|
|
|
tasks:
|
|
- install:
|
|
- ceph:
|
|
- sleep:
|
|
duration: 10
|
|
- interactive:
|
|
|
|
:param ctx: Context
|
|
:param config: Configuration
|
|
"""
|
|
if not config:
|
|
config = {}
|
|
assert isinstance(config, dict)
|
|
duration = int(config.get('duration', 5))
|
|
log.info('Sleeping for %d', duration)
|
|
time.sleep(duration)
|