2012-05-31 Ramon Novoa <rnovoa@artica.es>

* lib/PandoraFMS/WMIServer.pm: Merged from 4.0 branch. Hide wmic error
	  messages and improved error checking.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6386 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
ramonn 2012-05-31 11:29:33 +00:00
parent 9013a6a540
commit a05ae1593b
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2012-05-31 Ramon Novoa <rnovoa@artica.es>
* lib/PandoraFMS/WMIServer.pm: Merged from 4.0 branch. Hide wmic error
messages and improved error checking.
2012-05-30 Sancho Lerena <slerena@artica.es>
* lib/PandoraFMS/Core.pm: Updated batch statistic queries to get

View File

@ -154,8 +154,8 @@ sub data_consumer ($$) {
logger ($pa_config, "Executing AM # $module_id WMI command '$wmi_command'", 9);
# Execute command
my $module_data = `$wmi_command`;
if (! defined ($module_data)) {
my $module_data = `$wmi_command 2>/dev/null`;
if ($? ne 0 || ! defined ($module_data)) {
pandora_update_module_on_error ($pa_config, $module, $dbh);
return;
}