mirror of
https://github.com/ceph/ceph
synced 2025-01-03 17:42:36 +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
|