From 921b94a6e8d4a477cd66272b3025df5cbe860619 Mon Sep 17 00:00:00 2001 From: litingt Date: Mon, 21 Apr 2014 00:43:38 -0700 Subject: [PATCH] remove debug comments --- xCAT-server/share/xcat/tools/xCATreg | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/xCAT-server/share/xcat/tools/xCATreg b/xCAT-server/share/xcat/tools/xCATreg index a75df7aff..4bff804de 100755 --- a/xCAT-server/share/xcat/tools/xCATreg +++ b/xCAT-server/share/xcat/tools/xCATreg @@ -292,7 +292,7 @@ sub copy_code { ##will modify to $rhppc64config{var}{MNIP} #my $mn = $management_node; - send_msg("mn is $mn"); + #send_msg("mn is $mn"); #install dep for buildlocal send_msg("begin to install build required packages on mn $mn"); @@ -880,7 +880,7 @@ unless ($ENV{'REGDEBUG'}) { #used for debug. # step 4. Copy code to MNs ####################################### send_msg("\n\n\n== Running copy_code..............."); - #$res = copy_code($mn); + $res = copy_code($mn); if ($res) { send_msg("COPY CODE returns error, exit"); exit 1; @@ -889,7 +889,7 @@ unless ($ENV{'REGDEBUG'}) { #used for debug. # step 5. Build xcat code in MNs ####################################### send_msg("\n\n\n== Running build_xcat..............."); - #$res = build_xcat($mn); + $res = build_xcat($mn); if ($res) { send_msg("BUILD XCAT returns error, exit"); exit 1; @@ -898,7 +898,7 @@ unless ($ENV{'REGDEBUG'}) { #used for debug. # step 6. Read xCAT MN's configuration ####################################### send_msg("\n\n\n== Running config_mn..............."); - #$res = config_mn($mn); + $res = config_mn($mn); if ($res) { send_msg("CONFIGURE MN returns error, exit"); exit 1;