mirror of
https://github.com/xcat2/xcat-core.git
synced 2025-06-16 11:20:32 +00:00
Fix dereference typo
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@544 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
@ -107,7 +107,7 @@ sub mknetboot {
|
||||
my $ient = $restab->getNodeAttribs($node,['servicenode']);
|
||||
my $ipfn = xCAT::Utils->my_ip_facing($node);
|
||||
if ($ient and $ient->{servicenode}) { #Servicenode attribute overrides
|
||||
$imgsrv = $ient=>{servicenode};
|
||||
$imgsrv = $ient->{servicenode};
|
||||
} elsif ($ipfn) {
|
||||
$imgsrv = $ipfn; #guessing self is second best
|
||||
} # resort to master value in site table only if not local to node...
|
||||
|
@ -100,7 +100,7 @@ sub mknetboot {
|
||||
my $ient = $restab->getNodeAttribs($node,['servicenode']);
|
||||
my $ipfn = xCAT::Utils->my_ip_facing($node);
|
||||
if ($ient and $ient->{servicenode}) { #Servicenode attribute overrides
|
||||
$imgsrv = $ient=>{servicenode};
|
||||
$imgsrv = $ient->{servicenode};
|
||||
} elsif ($ipfn) {
|
||||
$imgsrv = $ipfn; #guessing self is second best
|
||||
} # resort to master value in site table only if not local to node...
|
||||
|
Reference in New Issue
Block a user