cephconfig: align written key-value pairs by tab

instead of tab + space.

Signed-off-by: Max Carrara <m.carrara@proxmox.com>
Tested-by: Friedrich Weber <f.weber@proxmox.com>
This commit is contained in:
Max Carrara
2024-04-02 16:55:18 +02:00
committed by Fabian Grünbichler
parent f9d9bd3223
commit d93f8aea9d

View File

@ -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";