summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/osd_support/module.py
blob: 1f3e137bbc253f1d7a894945ddbf3e9b3138d914 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from mgr_module import MgrModule


class OSDSupport(MgrModule):
    # Kept to keep upgrades from older point releases working.
    # This module can be removed as soon as we no longer
    # support upgrades from old octopus point releases.

    # On the other hand, if you find a use for this module,
    # Feel free to use it!

    COMMANDS = []

    MODULE_OPTIONS: []

    NATIVE_OPTIONS: []

    def __init__(self, *args, **kwargs):
        super(OSDSupport, self).__init__(*args, **kwargs)