2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-05-29 17:23:08 +00:00

fix issue Unsupported character in bootparams.addkcmdline #2392

This commit is contained in:
immarvin 2017-01-10 21:20:09 -05:00
parent 2f1e5accc1
commit fdbf2166e1

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