mirror of
https://git.proxmox.com/git/ceph.git
synced 2025-04-28 15:01:36 +00:00
43 lines
1.8 KiB
Diff
43 lines
1.8 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Thomas Lamprecht <t.lamprecht@proxmox.com>
|
|
Date: Tue, 5 Sep 2023 13:28:07 +0200
|
|
Subject: [PATCH] debian: add missing bcrypt to manager .requires
|
|
|
|
The `ceph-mgr` package lost its dependency on `python3-bcrypt` when
|
|
the dependencies got moved from d/control to a dh_python3 compatible
|
|
requires file. Add it again as the bcrypt module is still used there.
|
|
|
|
Otherwise one gets errors when, e.g., calling `ceph -s` after a fresh
|
|
installation:
|
|
|
|
> 13 mgr modules have failed dependencies
|
|
> Module 'balancer' has failed dependency: No module named 'bcrypt'
|
|
> Module 'crash' has failed dependency: No module named 'bcrypt'
|
|
> Module 'devicehealth' has failed dependency: No module named 'bcrypt'
|
|
> Module 'iostat' has failed dependency: No module named 'bcrypt'
|
|
> Module 'nfs' has failed dependency: No module named 'bcrypt'
|
|
> Module 'orchestrator' has failed dependency: No module named 'bcrypt'
|
|
> Module 'pg_autoscaler' has failed dependency: No module named 'bcrypt'
|
|
> Module 'progress' has failed dependency: No module named 'bcrypt'
|
|
> Module 'rbd_support' has failed dependency: No module named 'bcrypt'
|
|
> Module 'restful' has failed dependency: No module named 'bcrypt'
|
|
> Module 'status' has failed dependency: No module named 'bcrypt'
|
|
> Module 'telemetry' has failed dependency: No module named 'bcrypt'
|
|
> Module 'volumes' has failed dependency: No module named 'bcrypt'
|
|
|
|
Fixes: ef19547e83e ("debian: add .requires for specifying python3 deps")
|
|
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
|
|
---
|
|
debian/ceph-mgr.requires | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/debian/ceph-mgr.requires b/debian/ceph-mgr.requires
|
|
index bf334fb9b..39336330c 100644
|
|
--- a/debian/ceph-mgr.requires
|
|
+++ b/debian/ceph-mgr.requires
|
|
@@ -1,3 +1,4 @@
|
|
+bcrypt
|
|
pyOpenSSL
|
|
cephfs
|
|
ceph-argparse
|