From 60fd708242d83c407333151b2b2b78ced862d763 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Wed, 19 Jun 2019 10:23:01 +0200 Subject: [PATCH] followup: comment reword Signed-off-by: Thomas Lamprecht --- PVE/CephConfig.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/PVE/CephConfig.pm b/PVE/CephConfig.pm index ced8358..ab78328 100644 --- a/PVE/CephConfig.pm +++ b/PVE/CephConfig.pm @@ -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; }