From 3336f8c725610558535179b7949dbe138af4821a Mon Sep 17 00:00:00 2001 From: wanghuaz Date: Thu, 17 Sep 2009 05:06:30 +0000 Subject: [PATCH] fixed one issue that on P6. If no profile enable for one lpar, the curr_profile setting on hmc is set to none. But on p5, it is set to empty. This makes in xcat databse, the pprofile is set to none even no profile is available. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@4152 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/PPCscan.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/PPCscan.pm b/perl-xCAT/xCAT/PPCscan.pm index b24d6b082..567fe1e1a 100644 --- a/perl-xCAT/xCAT/PPCscan.pm +++ b/perl-xCAT/xCAT/PPCscan.pm @@ -304,7 +304,7 @@ sub enumerate { } foreach ( @$lpars ) { my ($name,$lparid,$dprof,$curprof) = split /,/; - my $prof = (length($curprof)) ? $curprof : $dprof; + my $prof = (length($curprof) && ($curprof !~ /^none$/)) ? $curprof : $dprof; my $ips = ""; #####################################