Hi,

> I have a question about "unattended.csv" "middle_scripts" option.
> 
> What separator symbol should I use in list of scripts?
> 
...
> List above didn't work and I guess that "space" is not right symbol.
> I've looked into "C:\netinst\unattended.txt" and ";" is used as 
> separator symbol instead.
> 
> I could not find information regarding this option in documentation.


in install.pl the corresponding line is:

    my @middle_scripts = split /;/, $middle;

so ";" should do. Before this line you could perhaps replace ; by
whatever you need using preg_match, e.g.

$middle =~ s/,/\;/;
(not tested, see:)
http://perldoc.perl.org/perlfaq6.html#How-can-I-match-a-locale-smart-version-of-'%2f%5ba-zA-Z%5d%2f'%3f-alpha

HTH
Falko

-- 
Falko Trojahn                     fon +49-341-3581294
Dipl.-Ingenieur Netzwerke/Support fax +49-341-3581295

SMI Softmark Informationstechnologien GmbH
Sitz: D-04416 Markkleeberg, Friedrich-Ebert-Str. 51
Registergericht: Amtsgericht Leipzig HRB 164
Geschäftsführer: Andreas Griesmann
www.smi-softmark.de

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info

Reply via email to