Author: arkurth
Date: Wed May 16 20:26:07 2012
New Revision: 1339341

URL: http://svn.apache.org/viewvc?rev=1339341&view=rev
Log:
VCL-561
Commented out warning message line in Windows.pm::reg_query. It was generating 
many warning messages if a registry string value spanned multiple lines.

Modified:
    incubator/vcl/trunk/managementnode/lib/VCL/Module/OS/Windows.pm

Modified: incubator/vcl/trunk/managementnode/lib/VCL/Module/OS/Windows.pm
URL: 
http://svn.apache.org/viewvc/incubator/vcl/trunk/managementnode/lib/VCL/Module/OS/Windows.pm?rev=1339341&r1=1339340&r2=1339341&view=diff
==============================================================================
--- incubator/vcl/trunk/managementnode/lib/VCL/Module/OS/Windows.pm (original)
+++ incubator/vcl/trunk/managementnode/lib/VCL/Module/OS/Windows.pm Wed May 16 
20:26:07 2012
@@ -2596,7 +2596,11 @@ sub reg_query {
                                next;
                        }
                        else {
-                               notify($ERRORS{'WARNING'}, 0, "unexpected 
output in line: '" . string_to_ascii($line) . "'");
+                               # TODO: add support for registry values that 
span multiple lines. Example:
+                               #    Comments    REG_SZ  This security update 
is for Microsoft .NET Framework 3.5 SP1.
+                               #    If you later install a more recent service 
pack, this security update will be uninstalled automatically.
+                               #    For more information, visit 
http://support.microsoft.com/kb/2416473.
+                               #notify($ERRORS{'WARNING'}, 0, "unexpected 
output in line: '" . string_to_ascii($line) . "'\ncommand: '$command'");
                        }
                }
                


Reply via email to