From ddf754b1e8ddb5fe0827f0952cb7e1854f89fa7e Mon Sep 17 00:00:00 2001 From: wanghuaz Date: Fri, 4 May 2012 09:01:47 +0000 Subject: [PATCH] Fixing bug 3523438: ENV variable has issue with full installation git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.7@12522 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/perl/xCAT/Postage.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xCAT-server/lib/perl/xCAT/Postage.pm b/xCAT-server/lib/perl/xCAT/Postage.pm index c123af333..68103323e 100644 --- a/xCAT-server/lib/perl/xCAT/Postage.pm +++ b/xCAT-server/lib/perl/xCAT/Postage.pm @@ -911,7 +911,8 @@ sub includefile next if ( /^\s*#/ && !/^\s*#INCLUDE:[^#^\n]+#/ - && !/^\s*#NEW_INSTALL_LIST#/); #-- skip comments + && !/^\s*#NEW_INSTALL_LIST#/ + && !/^\s*#ENV:[^#^\n]+#/); #-- skip comments push(@text, $_); }