diff --git a/xCAT-server/lib/xcat/plugins/updatenode.pm b/xCAT-server/lib/xcat/plugins/updatenode.pm index ef6cfdb84..ac77be5e8 100644 --- a/xCAT-server/lib/xcat/plugins/updatenode.pm +++ b/xCAT-server/lib/xcat/plugins/updatenode.pm @@ -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; + } } }