[pve-devel] [PATCH v4 pve-storage 11/16] cephconfig: change order of written sections
Max Carrara
m.carrara at proxmox.com
Tue Mar 5 16:07:53 CET 2024
in order to group related sections together.
Signed-off-by: Max Carrara <m.carrara at proxmox.com>
---
Changes v2 --> v3:
* new; originally patch 07 of series v2, now adapted to this series
Changes v3 --> v4:
* none
src/PVE/CephConfig.pm | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/src/PVE/CephConfig.pm b/src/PVE/CephConfig.pm
index a361a5b..c84b78f 100644
--- a/src/PVE/CephConfig.pm
+++ b/src/PVE/CephConfig.pm
@@ -118,17 +118,20 @@ sub write_ceph_config {
my @rexprs = (
qr/global/,
+
qr/client/,
qr/client\..*/,
qr/mds/,
- qr/mon/,
- qr/osd/,
- qr/mgr/,
-
qr/mds\..*/,
+
+ qr/mon/,
qr/mon\..*/,
+
+ qr/osd/,
qr/osd\..*/,
+
+ qr/mgr/,
qr/mgr\..*/,
qr/.*/,
--
2.39.2
More information about the pve-devel
mailing list