mirror of
https://github.com/ceph/ceph
synced 2024-12-26 21:43:10 +00:00
14 lines
144 B
Python
14 lines
144 B
Python
"""
|
|
Null task
|
|
"""
|
|
def task(ctx, config):
|
|
"""
|
|
This task does nothing.
|
|
|
|
For example::
|
|
|
|
tasks:
|
|
- nop:
|
|
"""
|
|
pass
|