Hi all, new here, so forgive any mistakes.

The documentation from the main site (which, admittedly is still for 4.6) 
states:

"To configure which domain accounts are added to the local Administrators 
group, set the local_admins key to a semicolon-separated list of user names. An 
empty list is allowed, but it must be quoted. User names may be fully qualified 
(DOMAIN\user), or they may be bare (user); in the latter case, the 
[Identification]/JoinDomain value will be used as the domain."

However, the code in install.pl 4.7RC2 is:

my @admins = (defined $admins ? split / /, $admins : ());

which is actually splitting on spaces, not on semi-colons. As user/group names 
often contain spaces, this is not ideal behaviour.

Changing the line to

my @admins = (defined $admins ? split /;/, $admins : ());

Was required for me to fix this.

Steven Blackery

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
unattended-devel mailing list
unattended-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-devel

Reply via email to