From d93f8aea9d49763f55f788385d0d4375ef866699 Mon Sep 17 00:00:00 2001 From: Max Carrara Date: Tue, 2 Apr 2024 16:55:18 +0200 Subject: [PATCH] cephconfig: align written key-value pairs by tab instead of tab + space. Signed-off-by: Max Carrara Tested-by: Friedrich Weber --- src/PVE/CephConfig.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PVE/CephConfig.pm b/src/PVE/CephConfig.pm index 1b6e86c..845b7d2 100644 --- a/src/PVE/CephConfig.pm +++ b/src/PVE/CephConfig.pm @@ -72,7 +72,7 @@ sub write_ceph_config { $out .= "[$section]\n"; for my $key (sort keys $cfg->{$section}->%*) { - $out .= "\t $key = $cfg->{$section}->{$key}\n"; + $out .= "\t$key = $cfg->{$section}->{$key}\n"; } $out .= "\n";