mirror of
https://github.com/xcat2/xcat-core.git
synced 2025-06-12 17:30:19 +00:00
support multiple synclist files in the osimage.synclists attr
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@13856 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
@ -986,7 +986,12 @@ sub updatenode
|
||||
|
||||
if ($synclist)
|
||||
{
|
||||
push @{$syncfile_node{$synclist}}, $node;
|
||||
# this can be a comma separated list of multiple
|
||||
# syncfiles
|
||||
my @sl = split(',',$synclist);
|
||||
foreach my $s (@sl){
|
||||
push @{$syncfile_node{$s}}, $node;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user