From 125dcfa5bb2ec840643278889e77f04ee38c176c Mon Sep 17 00:00:00 2001 From: asirxing Date: Mon, 28 Jan 2013 06:56:36 +0000 Subject: [PATCH] Filter out the package group(start with @) in pkglist.cfm file git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@15002 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/CFMUtils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/CFMUtils.pm b/perl-xCAT/xCAT/CFMUtils.pm index c6cbfb144..efe2761c0 100644 --- a/perl-xCAT/xCAT/CFMUtils.pm +++ b/perl-xCAT/xCAT/CFMUtils.pm @@ -642,7 +642,7 @@ sub getPreOSpkgsList { while (<$pkglistfp>) { my $line = xCAT::CFMUtils->trim($_); - if (($line =~ /^#/) || ($line =~ /^\s*$/ )) + if (($line =~ /^#/) || ($line =~ /^\s*$/ ) || ($line =~ /^@/)) { #comment line or blank line next; } else