move to antivirus subfolder

This commit is contained in:
cgagnaire 2018-04-06 10:04:59 +02:00
parent 1dfab8edf2
commit fa02d775ad
7 changed files with 13 additions and 13 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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