From: Redouane Kachach Date: Thu, 4 Jun 2026 10:45:58 +0000 (+0200) Subject: mgr: adding ceph_secrets_xxx.py files to the build/packaging X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=8a28a1578e75b22476f8c0c4e1ba0688073df94d;p=ceph.git mgr: adding ceph_secrets_xxx.py files to the build/packaging Fixes: https://tracker.ceph.com/issues/74562 Assisted-by: Claude Assisted-by: ChatGPT Signed-off-by: Redouane Kachach --- diff --git a/ceph.spec.in b/ceph.spec.in index 780889d5e73..352a70d2c14 100644 --- a/ceph.spec.in +++ b/ceph.spec.in @@ -1925,6 +1925,8 @@ fi %{_datadir}/ceph/mgr/mgr_module.* %{_datadir}/ceph/mgr/mgr_util.* %{_datadir}/ceph/mgr/object_format.* +%{_datadir}/ceph/mgr/ceph_secrets_client.* +%{_datadir}/ceph/mgr/ceph_secrets_types.* %{_datadir}/ceph/mgr/cherrypy_mgr.* %{_unitdir}/ceph-mgr@.service %{_unitdir}/ceph-mgr.target diff --git a/src/pybind/mgr/CMakeLists.txt b/src/pybind/mgr/CMakeLists.txt index 36abd1bb53f..f416f16e922 100644 --- a/src/pybind/mgr/CMakeLists.txt +++ b/src/pybind/mgr/CMakeLists.txt @@ -59,5 +59,5 @@ set(mgr_modules install(DIRECTORY ${mgr_modules} DESTINATION ${CEPH_INSTALL_DATADIR}/mgr ${mgr_module_install_excludes}) -install(FILES mgr_module.py mgr_util.py object_format.py cherrypy_mgr.py +install(FILES mgr_module.py mgr_util.py object_format.py cherrypy_mgr.py ceph_secrets_client.py ceph_secrets_types.py DESTINATION ${CEPH_INSTALL_DATADIR}/mgr)