Problem: if a file with a space in the name is present in /etc, saving the configuration breaks.
A cursory look at /usr/local/sbin/config seems to point at the "find" cycles where the cycle variable $i is used unquoted (there's a couple of those).
Replacing all occurrences of $i with ${i} should be sufficient, I suppose.
Problem: if a file with a space in the name is present in /etc, saving the configuration breaks.
A cursory look at
/usr/local/sbin/configseems to point at the "find" cycles where the cycle variable$iis used unquoted (there's a couple of those).Replacing all occurrences of
$iwith${i}should be sufficient, I suppose.