This reverts commit
a55c1dd0fac826978edf22e448c3456e7634cbc3.
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.
Revert "build/debian: remove osd_support"
This reverts commit
8ff2824beb78dfd03710e94302f038ea70fb4561.
Fixes: https://tracker.ceph.com/issues/47109
Signed-off-by: Sebastian Wagner <sebastian.wagner@suse.com>
%{_datadir}/ceph/mgr/mds_autoscaler
%{_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)