Allow dependenacy table to take list of operations - Line #900

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@614 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
sakolish 2008-02-28 14:48:00 +00:00
parent f963f12bc9
commit 9ad735af1c

View File

@ -897,7 +897,7 @@ sub build_depend {
if (!defined($dep)) {
$no_dp{$node} = 1;
}
elsif ($cmd eq @$exargs[0]) {
elsif ( grep(/^@$exargs[0]$/, split /,/, $cmd )) {
foreach (split /,/,$dep ) {
$dp{$_}{$node} = $delay;
}