diff --git a/perl-xCAT/xCAT/FSPvm.pm b/perl-xCAT/xCAT/FSPvm.pm index 15badd518..a00285672 100644 --- a/perl-xCAT/xCAT/FSPvm.pm +++ b/perl-xCAT/xCAT/FSPvm.pm @@ -2037,7 +2037,7 @@ sub query_cec_info { if (scalar(@$rethash)) { push @result, @$rethash; } else { - push @result, [ $name, "No information got", -1 ]; + push @result, [ $name, "No information obtained.", -1 ]; last; } $lpar_hash{$name} = \%tmp_hash; @@ -2048,7 +2048,7 @@ sub query_cec_info { if (scalar(@$rethash)) { push @result, @$rethash; } else { - push @result, [ @td[3], "No information got", -1 ]; + push @result, [ @td[3], "No information obtained.", -1 ]; last; } diff --git a/perl-xCAT/xCAT/MacMap.pm b/perl-xCAT/xCAT/MacMap.pm index e857cf9f5..54edb1824 100644 --- a/perl-xCAT/xCAT/MacMap.pm +++ b/perl-xCAT/xCAT/MacMap.pm @@ -329,14 +329,14 @@ sub dump_mac_info { foreach my $switch (keys %{ $self->{switchparmhash} }) { if ($dump_all_switches or defined($switches_to_dump{$switch})) { if ($self->{show_verbose_info}) { - xCAT::MsgUtils->message("I", { data => ["$switch: Start to get information"] }, $self->{callback}); + xCAT::MsgUtils->message("I", { data => ["$switch: Attempting to refresh switch information..."] }, $self->{callback}); } $self->refresh_switch(undef, $community, $switch); if ($self->{show_verbose_info}) { - xCAT::MsgUtils->message("I", { data => ["$switch: Finish to get information"] }, $self->{callback}); + xCAT::MsgUtils->message("I", { data => ["$switch: Finished refreshing switch information."] }, $self->{callback}); } if (!defined($self->{macinfo}->{$switch})) { - $ret{$switch}->{ErrorStr} = "No information get"; + $ret{$switch}->{ErrorStr} = "No switch information obtained."; foreach my $defportname (keys %{ $self->{switches}->{$switch} }) { $ret{$switch}->{$defportname}->{Node} = $self->{switches}->{$switch}->{$defportname}; }