From 0a61ca29258e072dee6133c0a30ab02c90e87495 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Tue, 12 Feb 2008 01:56:47 +0000 Subject: [PATCH] Fix missing use clause is centos for missing function git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@443 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server-2.0/lib/xcat/plugins/centos.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xCAT-server-2.0/lib/xcat/plugins/centos.pm b/xCAT-server-2.0/lib/xcat/plugins/centos.pm index 3e115e20d..3c5b0ecf9 100644 --- a/xCAT-server-2.0/lib/xcat/plugins/centos.pm +++ b/xCAT-server-2.0/lib/xcat/plugins/centos.pm @@ -1,6 +1,7 @@ # IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html package xCAT_plugin::centos; use Storable qw(dclone); +use xCAT::Utils; use Sys::Syslog; use xCAT::Table; use Cwd; @@ -104,7 +105,7 @@ sub mknetboot { my $hmtab = xCAT::Table->new('nodehm'); my $ent = $restab->getNodeAttribs($node,['serialport','primarynic']); my $ient = $restab->getNodeAttribs($node,['servicenode']); - my $ipfn = my_ip_facing($node); + my $ipfn = xCAT::Utils->my_ip_facing($node); if ($ient and $ient->{servicenode}) { #Servicenode attribute overrides $imgsrv = $ient=>{servicenode}; } elsif ($ipfn) {