change masterclock plugin path (#1191)

This commit is contained in:
Colin Gagnaire 2018-10-24 15:55:41 +02:00 committed by GitHub
parent f2bc3f143b
commit df161b3d04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -18,7 +18,7 @@
# limitations under the License.
#
package network::masterclock::ntp100gps::snmp::mode::gpsstatus;
package hardware::devices::masterclock::ntp100gps::snmp::mode::gpsstatus;
use base qw(centreon::plugins::templates::counter);

View File

@ -18,7 +18,7 @@
# limitations under the License.
#
package network::masterclock::ntp100gps::snmp::mode::ntpperformance;
package hardware::devices::masterclock::ntp100gps::snmp::mode::ntpperformance;
use base qw(centreon::plugins::templates::counter);

View File

@ -18,7 +18,7 @@
# limitations under the License.
#
package network::masterclock::ntp100gps::snmp::plugin;
package hardware::devices::masterclock::ntp100gps::snmp::plugin;
use strict;
use warnings;
@ -31,8 +31,8 @@ sub new {
$self->{version} = '0.1';
%{$self->{modes}} = (
'gps-status' => 'network::masterclock::ntp100gps::snmp::mode::gpsstatus',
'ntp-performance' => 'network::masterclock::ntp100gps::snmp::mode::ntpperformance',
'gps-status' => 'hardware::devices::masterclock::ntp100gps::snmp::mode::gpsstatus',
'ntp-performance' => 'hardware::devices::masterclock::ntp100gps::snmp::mode::ntpperformance',
'uptime' => 'snmp_standard::mode::uptime',
);