2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-06-13 01:40:26 +00:00

Merge pull request #2397 from immarvin/onaddkcmdline

fix issue Unsupported character in bootparams.addkcmdline #2392
This commit is contained in:
Weihua Hu
2017-01-11 10:31:01 +08:00
committed by GitHub

View File

@ -4645,7 +4645,7 @@ sub splitkcmdline {
my %cmdhash;
my @cmdlist = split(/[, ]/, $kcmdline);
my @cmdlist = split(/[ ]/, $kcmdline);
foreach my $cmd (@cmdlist) {
if ($cmd =~ /^R::(.*)$/) {
$cmdhash{persistent} .= "$1 ";