]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/osd_support/module.py
import 15.2.5
[ceph.git] / ceph / src / pybind / mgr / osd_support / module.py
CommitLineData
f6b5b4d7 1from mgr_module import MgrModule
9f95a23c
TL
2
3
4class OSDSupport(MgrModule):
f6b5b4d7
TL
5 # Kept to keep upgrades from older point releases working.
6 # This module can be removed as soon as we no longer
7 # support upgrades from old octopus point releases.
9f95a23c 8
f6b5b4d7
TL
9 # On the other hand, if you find a use for this module,
10 # Feel free to use it!
9f95a23c 11
f6b5b4d7 12 COMMANDS = []
9f95a23c 13
f6b5b4d7
TL
14 MODULE_OPTIONS: []
15
16 NATIVE_OPTIONS: []
9f95a23c
TL
17
18 def __init__(self, *args, **kwargs):
19 super(OSDSupport, self).__init__(*args, **kwargs)