]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/osd_support/module.py
import 15.2.5
[ceph.git] / ceph / src / pybind / mgr / osd_support / module.py
1 from mgr_module import MgrModule
2
3
4 class OSDSupport(MgrModule):
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.
8
9 # On the other hand, if you find a use for this module,
10 # Feel free to use it!
11
12 COMMANDS = []
13
14 MODULE_OPTIONS: []
15
16 NATIVE_OPTIONS: []
17
18 def __init__(self, *args, **kwargs):
19 super(OSDSupport, self).__init__(*args, **kwargs)