From 7d94a89b10da1b35546f8894ad7f4cad94a01e54 Mon Sep 17 00:00:00 2001 From: lissav Date: Tue, 26 Jul 2011 12:30:29 +0000 Subject: [PATCH] Fix logic, check for ipforward in wrong place git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10156 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/AAsn.pm | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/xCAT-server/lib/xcat/plugins/AAsn.pm b/xCAT-server/lib/xcat/plugins/AAsn.pm index 561b36b78..c2bc67197 100644 --- a/xCAT-server/lib/xcat/plugins/AAsn.pm +++ b/xCAT-server/lib/xcat/plugins/AAsn.pm @@ -215,6 +215,16 @@ sub init_plugin } } + my $service = "ipforward"; + if (grep(/$service/, @servicelist)) + { + + $rc = xCAT::NetworkUtils->setup_ip_forwarding(1); # enable ip forwarding + if ($rc == 0) + { + xCAT::Utils->update_xCATSN($service); + } + } # # setup dhcp only on Linux and last @@ -253,16 +263,6 @@ sub init_plugin "AAsn.pm:Error reading the servicenode table."); } - my $service = "ipforward"; - if (grep(/$service/, @servicelist)) - { - - $rc = xCAT::NetworkUtils->setup_ip_forwarding(1); # enable ip forwarding - if ($rc == 0) - { - xCAT::Utils->update_xCATSN($service); - } - } } else # management node {