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:
parent
b5350b9122
commit
38c71e86bc
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user