update with use of _xcatpreprocessed
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@3798 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
parent
19d7549210
commit
680c49235a
@ -568,7 +568,9 @@ sub guestcmd {
|
||||
|
||||
sub preprocess_request {
|
||||
my $request = shift;
|
||||
if ($request->{_xcatdest}) { return [$request]; } #exit if preprocessed
|
||||
#if already preprocessed, go straight to request
|
||||
if ($request->{_xcatpreprocessed}->[0] == 1) { return [$request]; }
|
||||
|
||||
my $callback=shift;
|
||||
my @requests;
|
||||
|
||||
@ -609,6 +611,8 @@ sub preprocess_request {
|
||||
my $reqcopy = {%$request};
|
||||
$reqcopy->{node} = $sn->{$snkey};
|
||||
$reqcopy->{'_xcatdest'} = $snkey;
|
||||
$reqcopy->{_xcatpreprocessed}->[0] = 1;
|
||||
|
||||
push @requests, $reqcopy;
|
||||
}
|
||||
return \@requests;
|
||||
|
Loading…
Reference in New Issue
Block a user