From 99943f735b8eb1210609aefd891b4b7ef54ffe44 Mon Sep 17 00:00:00 2001 From: ligc Date: Thu, 16 Jun 2011 00:42:45 +0000 Subject: [PATCH] fix for bug 3299823: gateway support for xcat2nim -t network git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@9811 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/xcat2nim.pm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/xCAT-server/lib/xcat/plugins/xcat2nim.pm b/xCAT-server/lib/xcat/plugins/xcat2nim.pm index 84bcb5331..e53665b35 100644 --- a/xCAT-server/lib/xcat/plugins/xcat2nim.pm +++ b/xCAT-server/lib/xcat/plugins/xcat2nim.pm @@ -723,6 +723,15 @@ sub x2n if ($::objtype{$obj} eq 'node') { push(@nodes, $obj); } elsif ($::objtype{$obj} eq 'network') { + if ($::objhash{$obj}{'gateway'} eq '') { + $::objhash{$obj}{'gateway'} = xCAT::NetworkUtils->my_ip_in_subnet($::objhash{$obj}{'net'}, $::objhash{$obj}{'mask'}); + if(!$::objhash{$obj}{'gateway'}) { + my $rsp; + $rsp->{data}->[0] = "Could not get gateway for network $obj, ...skipping\n"; + xCAT::MsgUtils->message("E", $rsp, $callback); + next; + } + } push(@networks, $obj); } elsif ($::objtype{$obj} eq 'group') { push(@groups, $obj);