From 6d5e82663407bfdf8c195ef8f4e8006212fed420 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Thu, 21 Feb 2008 20:13:12 +0000 Subject: [PATCH] Fix dereference typo git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@544 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server-2.0/lib/xcat/plugins/centos.pm | 2 +- xCAT-server-2.0/lib/xcat/plugins/rhel.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xCAT-server-2.0/lib/xcat/plugins/centos.pm b/xCAT-server-2.0/lib/xcat/plugins/centos.pm index 3c5b0ecf9..7f335e86b 100644 --- a/xCAT-server-2.0/lib/xcat/plugins/centos.pm +++ b/xCAT-server-2.0/lib/xcat/plugins/centos.pm @@ -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... diff --git a/xCAT-server-2.0/lib/xcat/plugins/rhel.pm b/xCAT-server-2.0/lib/xcat/plugins/rhel.pm index 07e5c8c3a..16d6b70f3 100644 --- a/xCAT-server-2.0/lib/xcat/plugins/rhel.pm +++ b/xCAT-server-2.0/lib/xcat/plugins/rhel.pm @@ -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...