From: yujian Date: Wed, 13 Sep 2006 07:19:40 +0000 (+0000) Subject: Replace comma with whitespace in params' string. X-Git-Tag: v1_8_0_110~486^2~949 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=3e6d83e64dbedebb8829289ef7fc78f3958a0523;p=fs%2Flustre-release.git Replace comma with whitespace in params' string. --- diff --git a/lustre/scripts/lmc2csv.pl b/lustre/scripts/lmc2csv.pl index 6bd0a9f..14a690d 100644 --- a/lustre/scripts/lmc2csv.pl +++ b/lustre/scripts/lmc2csv.pl @@ -173,13 +173,13 @@ foreach my $mds (@{$objs{"mds"}}) { my $lov = $mds->{"lov"}; my $mkfs_options=""; if (defined($lov->{"stripe_sz"})) { - $mkfs_options .= "lov.stripe.size=" . $lov->{"stripe_sz"} . ","; + $mkfs_options .= "lov.stripe.size=" . $lov->{"stripe_sz"} . " "; } if (defined($lov->{"stripe_cnt"})) { - $mkfs_options .= "lov.stripe.count=" . $lov->{"stripe_cnt"} . ","; + $mkfs_options .= "lov.stripe.count=" . $lov->{"stripe_cnt"} . " "; } if (defined($lov->{"stripe_pattern"})) { - $mkfs_options .= "lov.stripe.pattern=" . $lov->{"stripe_pattern"} . ","; + $mkfs_options .= "lov.stripe.pattern=" . $lov->{"stripe_pattern"} . " "; } chop($mkfs_options); if ($mkfs_options ne "") {