hello there,

i might be mistaken but i have the impression that the conf-csv.pl script is not
able to deal with the following line in unattend.csv

"SOMENAME","Partitions","fdisk_cmds="fdisk /clearall 1;fdisk /pri:100,100;fdisk
/activate:1 1""

...this is the case because "," is not used sololey as a field delimiter but as
part of the argument for the fdisk command.

something like:
42,43c42,46
<             push @ret, $1;
<             $line = $2;
---
>           my ($val, $rest) = ($1, $2);
>           # replace ~ with , - workaround for Partitions
>           $val =~ s/~/,/g;
>           push @ret, $val;
>           $line = $rest
...in conf-csv.pl fixes this issue for me (and you have to exchange the "," by a
"~"...)


regards,
egon



-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
unattended-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/unattended-devel

Reply via email to