From 7c47c20be07846eb6c267601b2fe63ae558f531b Mon Sep 17 00:00:00 2001 From: lissav Date: Thu, 20 Sep 2012 18:58:47 +0000 Subject: [PATCH] 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 --- xCAT-server/lib/xcat/plugins/updatenode.pm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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; + } } }