Prevent recording "Can't locate PandoraFMS/Enterprise.pm in @INC.." to the error log (picked from develop branch).

This commit is contained in:
Hirofumi Kosaka 2015-12-17 17:21:21 +09:00
parent 520a56f787
commit 402078d7c6
1 changed files with 5 additions and 2 deletions

View File

@ -587,11 +587,14 @@ sub enterprise_load ($) {
else {
eval 'require PandoraFMS::Enterprise;';
}
# Ops
if ($@) {
# Enterprise.pm not found.
return 0 if ($@ =~ m/PandoraFMS\/Enterprise\.pm.*\@INC/);
open (STDERR, ">> " . $pa_config->{'errorlogfile'});
print STDERR $@;
close (STDERR);