dracut
dracut copied to clipboard
Change configuration variables from space separated items to real bash arrays
Possible strategy:
Since bash assigns var+="foo bar" to the first array index, we could increase the array index beforehand manually and later on only split ${var[0]} via IFS and push it to the array end.