From d69f41ea52a23fab748a2aa2210c6014ce2861a5 Mon Sep 17 00:00:00 2001 From: nott Date: Tue, 19 Jan 2010 19:39:07 +0000 Subject: [PATCH] Removed reference to BNDFILE. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@4982 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/InstUtils.pm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/perl-xCAT/xCAT/InstUtils.pm b/perl-xCAT/xCAT/InstUtils.pm index fdbfcd88f..b7ebf602f 100644 --- a/perl-xCAT/xCAT/InstUtils.pm +++ b/perl-xCAT/xCAT/InstUtils.pm @@ -394,7 +394,7 @@ sub readBNDfile xCAT::InstUtils->get_nim_attr_val($BNDname, 'location', $callback, $nimprime, $sub_req); - # The boundle file may be on nimprime + # The bundle file may be on nimprime my $ccmd = qq~cat $bnd_file_name~; my $output=xCAT::InstUtils->xcmd($callback, $sub_req, "xdsh", $nimprime, $ccmd, 0); if ($::RUNCMD_RC != 0) { @@ -404,7 +404,6 @@ sub readBNDfile } # get the names of the packages - #$output =~ s/$nimprime:\s+//g; foreach my $line (split(/\n/, $output)) { #May include xdsh prefix $nimprime: @@ -413,7 +412,6 @@ sub readBNDfile next if ($line =~ /^\s*$/ || $line =~ /^\s*#/); push(@pkglist, $line); } - close(BNDFILE); return (0, \@pkglist, $bnd_file_name); }