%{_datadir}/ceph/mgr/localpool
%{_datadir}/ceph/mgr/orchestrator
%{_datadir}/ceph/mgr/osd_perf_query
+%{_datadir}/ceph/mgr/osd_support
%{_datadir}/ceph/mgr/pg_autoscaler
%{_datadir}/ceph/mgr/progress
%{_datadir}/ceph/mgr/prometheus
usr/share/ceph/mgr/localpool
usr/share/ceph/mgr/orchestrator
usr/share/ceph/mgr/osd_perf_query
+usr/share/ceph/mgr/osd_support
usr/share/ceph/mgr/pg_autoscaler
usr/share/ceph/mgr/progress
usr/share/ceph/mgr/prometheus
--- /dev/null
+from .module import OSDSupport
--- /dev/null
+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)