From 04ada1712dffa3c9bb603f65aa854723725b8657 Mon Sep 17 00:00:00 2001 From: sjing Date: Tue, 19 Jul 2011 07:10:05 +0000 Subject: [PATCH] fix for bug 3370934, remove the blanks in osimage installp_bundle value. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10115 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/aixinstall.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/xCAT-server/lib/xcat/plugins/aixinstall.pm b/xCAT-server/lib/xcat/plugins/aixinstall.pm index 8e8218c4f..347f90391 100644 --- a/xCAT-server/lib/xcat/plugins/aixinstall.pm +++ b/xCAT-server/lib/xcat/plugins/aixinstall.pm @@ -1712,6 +1712,7 @@ sub chkosimage my @bndlist = split(/,/, $imagedef{$image_name}{installp_bundle}); foreach my $bnd (@bndlist) { + $bnd =~ s/\s*//g; # remove blanks my ($rc, $list, $loc) = xCAT::InstUtils->readBNDfile($callback, $bnd, $nimprime, $subreq); foreach my $pkg (@$list) {