From 88cc97509cb73354594fd9a248bcdb3a55daaa36 Mon Sep 17 00:00:00 2001 From: Simon Bimm Date: Fri, 16 Jan 2015 16:29:28 +0100 Subject: [PATCH] fix oid .0 missing digit --- centreon-plugins/network/checkpoint/mode/hastate.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/centreon-plugins/network/checkpoint/mode/hastate.pm b/centreon-plugins/network/checkpoint/mode/hastate.pm index 6f41eae24..0ff4b2816 100644 --- a/centreon-plugins/network/checkpoint/mode/hastate.pm +++ b/centreon-plugins/network/checkpoint/mode/hastate.pm @@ -67,7 +67,7 @@ sub run { my $oid_haInstalled = '.1.3.6.1.4.1.2620.1.5.2.0'; my $oid_haState = '.1.3.6.1.4.1.2620.1.5.6.0'; - my $oid_haStatCode = '.1.3.6.1.4.1.2620.1.5.101'; + my $oid_haStatCode = '.1.3.6.1.4.1.2620.1.5.101.0'; my $oid_haStarted = '.1.3.6.1.4.1.2620.1.5.5.0'; my $result = $self->{snmp}->get_leef(oids => [$oid_haInstalled, $oid_haState, $oid_haStatCode, $oid_haStarted], nothing_quit => 1);