2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-06-17 11:50:32 +00:00

add an enhancement to skip not well-formed deployment parameters.

This commit is contained in:
wanghuaz
2013-12-31 17:02:22 +08:00
parent 341e847646
commit b4a450352c

View File

@ -473,15 +473,17 @@ sub assign_to_osimage
}
}
my @newlines;
foreach my $line (@ls) {
if ($line =~ /^#ENV:.+=.+#$/) {
chomp($line);
$line =~ s/^#ENV://;
$line =~ s/#$//;
push @newlines, $line;
}
}
$deployparams = join ' ', @ls;
$deployparams = join ' ', @newlines;
if (open(NEWLIST, ">>", "$installdir/osimages/$osimage/kits/KIT_COMPONENTS.postinstall")) {
if ($deployparams) {