more fixes for -i flag

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2412 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
lissav 2008-10-29 16:10:44 +00:00
parent c90760a14c
commit f096e514bb

View File

@ -1056,7 +1056,7 @@ sub writereport
#
my $rsp = {};
$ignorefirsttemplate =~ tr/a-z/A-Z/; # convert to upper
my $firstpass = 0;
foreach my $template (sort keys %nodehash)
{
@ -1085,12 +1085,15 @@ sub writereport
}
else
{ # do not report nodes on first template
$rsp->{data}->[0] =
if ($firstpass == 0) {
$rsp->{data}->[0] =
"Not reporting matches on first template.\n";
print $::OUTPUT_FILE_HANDLE $rsp->{data}->[0];
if ($::VERBOSE)
{
print $::OUTPUT_FILE_HANDLE $rsp->{data}->[0];
if ($::VERBOSE)
{
xCAT::MsgUtils->message("I", $rsp, $callback);
}
$firstpass = 1;
}
}
}