2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-05-23 20:22:05 +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
commit 11a57ab824

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 ";