Merge pull request #940 from cgagnaire/apps-kaspersky

Move to antivirus subfolder
This commit is contained in:
Simon Bomm 2018-04-09 10:14:19 +02:00 committed by GitHub
commit 4f912490b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 13 additions and 13 deletions

View File

@ -18,7 +18,7 @@
# limitations under the License.
#
package apps::kaspersky::snmp::mode::deployment;
package apps::antivirus::kaspersky::snmp::mode::deployment;
use base qw(centreon::plugins::templates::counter);

View File

@ -18,7 +18,7 @@
# limitations under the License.
#
package apps::kaspersky::snmp::mode::events;
package apps::antivirus::kaspersky::snmp::mode::events;
use base qw(centreon::plugins::templates::counter);

View File

@ -18,7 +18,7 @@
# limitations under the License.
#
package apps::kaspersky::snmp::mode::fullscan;
package apps::antivirus::kaspersky::snmp::mode::fullscan;
use base qw(centreon::plugins::templates::counter);

View File

@ -18,7 +18,7 @@
# limitations under the License.
#
package apps::kaspersky::snmp::mode::logicalnetwork;
package apps::antivirus::kaspersky::snmp::mode::logicalnetwork;
use base qw(centreon::plugins::templates::counter);

View File

@ -18,7 +18,7 @@
# limitations under the License.
#
package apps::kaspersky::snmp::mode::protection;
package apps::antivirus::kaspersky::snmp::mode::protection;
use base qw(centreon::plugins::templates::counter);

View File

@ -18,7 +18,7 @@
# limitations under the License.
#
package apps::kaspersky::snmp::mode::updates;
package apps::antivirus::kaspersky::snmp::mode::updates;
use base qw(centreon::plugins::templates::counter);

View File

@ -18,7 +18,7 @@
# limitations under the License.
#
package apps::kaspersky::snmp::plugin;
package apps::antivirus::kaspersky::snmp::plugin;
use strict;
use warnings;
@ -32,12 +32,12 @@ sub new {
$self->{version} = '0.1';
%{$self->{modes}} = (
'deployment' => 'apps::kaspersky::snmp::mode::deployment',
'events' => 'apps::kaspersky::snmp::mode::events',
'full-scan' => 'apps::kaspersky::snmp::mode::fullscan',
'logical-network' => 'apps::kaspersky::snmp::mode::logicalnetwork',
'protection' => 'apps::kaspersky::snmp::mode::protection',
'updates' => 'apps::kaspersky::snmp::mode::updates',
'deployment' => 'apps::antivirus::kaspersky::snmp::mode::deployment',
'events' => 'apps::antivirus::kaspersky::snmp::mode::events',
'full-scan' => 'apps::antivirus::kaspersky::snmp::mode::fullscan',
'logical-network' => 'apps::antivirus::kaspersky::snmp::mode::logicalnetwork',
'protection' => 'apps::antivirus::kaspersky::snmp::mode::protection',
'updates' => 'apps::antivirus::kaspersky::snmp::mode::updates',
);
return $self;