]> git.proxmox.com Git - pve-storage.git/commitdiff
followup: comment reword
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 19 Jun 2019 08:23:01 +0000 (10:23 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 19 Jun 2019 08:23:01 +0000 (10:23 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
PVE/CephConfig.pm

index ced8358f4186de91eb6213736a132cc8cbe4e272..ab78328c2b9068a49ee960cf8c99052bbf12b32d 100644 (file)
@@ -34,8 +34,7 @@ sub parse_ceph_config {
 
        if ($line =~ m/^(.*?\S)\s*=\s*(\S.*)$/) {
            my ($key, $val) = ($1, $2);
-           # ceph treats ' ', '_' and '-' in keys the same, so we
-           # map it to '_' to get a consistent hash
+           # ceph treats ' ', '_' and '-' in keys the same, so lets do too
            $key =~ s/[-\ ]/_/g;
            $cfg->{$section}->{$key} = $val;
        }