Have blade.pm check both representations of uuid to search for a match....

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@11768 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2012-03-06 15:55:40 +00:00
parent b5350b9122
commit 38c71e86bc

View File

@ -3866,6 +3866,11 @@ sub process_request {
$node = $uuidmap{$uuid};
last;
}
$uuid =~ s/(..)(..)(..)(..)-(..)(..)-(..)(..)/$4$3$2$1-$6$5-$8$7/;
if ($uuid and $uuidmap{$uuid}) {
$node = $uuidmap{$uuid};
last;
}
}
}
unless ($node) {