change directory organisation
This commit is contained in:
parent
abcf57b235
commit
bd5f092365
|
@ -47,12 +47,12 @@ sub new {
|
|||
|
||||
$self->{version} = '1.0';
|
||||
%{$self->{modes}} = (
|
||||
'cpu' => 'network::hirschmann::common::mode::cpu',
|
||||
'environment' => 'network::hirschmann::common::mode::environment',
|
||||
'led' => 'network::hirschmann::RS::mode::led',
|
||||
'memory' => 'network::hirschmann::common::mode::memory',
|
||||
'processcount' => 'network::hirschmann::common::mode::processcount',
|
||||
'temperature' => 'network::hirschmann::common::mode::temperature',
|
||||
'cpu' => 'network::hirschmann::snmp::mode::cpu',
|
||||
'environment' => 'network::hirschmann::snmp::mode::environment',
|
||||
'led' => 'network::hirschmann::snmp::mode::led',
|
||||
'memory' => 'network::hirschmann::snmp::mode::memory',
|
||||
'processcount' => 'network::hirschmann::snmp::mode::processcount',
|
||||
'temperature' => 'network::hirschmann::snmp::mode::temperature',
|
||||
'traffic' => 'snmp_standard::mode::traffic',
|
||||
);
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
#
|
||||
####################################################################################
|
||||
|
||||
package network::hirschmann::common::mode::cpu;
|
||||
package network::hirschmann::snmp::mode::cpu;
|
||||
|
||||
use base qw(centreon::plugins::mode);
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
#
|
||||
####################################################################################
|
||||
|
||||
package network::hirschmann::common::mode::environment;
|
||||
package network::hirschmann::snmp::mode::environment;
|
||||
|
||||
use base qw(centreon::plugins::mode);
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
#
|
||||
####################################################################################
|
||||
|
||||
package network::hirschmann::RS::mode::led;
|
||||
package network::hirschmann::common::mode::led;
|
||||
|
||||
use base qw(centreon::plugins::mode);
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
#
|
||||
####################################################################################
|
||||
|
||||
package network::hirschmann::common::mode::memory;
|
||||
package network::hirschmann::snmp::mode::memory;
|
||||
|
||||
use base qw(centreon::plugins::mode);
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
#
|
||||
####################################################################################
|
||||
|
||||
package network::hirschmann::common::mode::processcount;
|
||||
package network::hirschmann::snmp::mode::processcount;
|
||||
|
||||
use base qw(centreon::plugins::mode);
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
#
|
||||
####################################################################################
|
||||
|
||||
package network::hirschmann::common::mode::temperature;
|
||||
package network::hirschmann::snmp::mode::temperature;
|
||||
|
||||
use base qw(centreon::plugins::mode);
|
||||
|
Loading…
Reference in New Issue