]> git.proxmox.com Git - pve-storage.git/commitdiff
cephconfig: align written key-value pairs by tab
authorMax Carrara <m.carrara@proxmox.com>
Tue, 2 Apr 2024 14:55:18 +0000 (16:55 +0200)
committerFabian Grünbichler <f.gruenbichler@proxmox.com>
Thu, 11 Apr 2024 09:53:37 +0000 (11:53 +0200)
instead of tab + space.

Signed-off-by: Max Carrara <m.carrara@proxmox.com>
Tested-by: Friedrich Weber <f.weber@proxmox.com>
src/PVE/CephConfig.pm

index 1b6e86cab3864be813f91268d01145dba1e4a462..845b7d21c943fd7481d728c1d913090ebdeb7155 100644 (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";