diff options
author | Jeremy T. Bouse <undrgrid@users.sourceforge.net> | 2003-06-12 04:16:34 +0000 |
---|---|---|
committer | Jeremy T. Bouse <undrgrid@users.sourceforge.net> | 2003-06-12 04:16:34 +0000 |
commit | 65a2b160be469fc5d18f6bc4498167b385d9516a (patch) | |
tree | 9f9e10ea61f5ec313bf674ea787d0537a3c2a734 | |
parent | 893f833ab7c90b1d10fcaa5c14e65b69d37c72e9 (diff) | |
download | monitoring-plugins-65a2b160be469fc5d18f6bc4498167b385d9516a.tar.gz |
Made the two check_ifoperstatus commands unique to remove conflicts
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@547 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r-- | command.cfg.in | 4 | ||||
-rw-r--r-- | configure.in | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/command.cfg.in b/command.cfg.in index bde271d3..85785f40 100644 --- a/command.cfg.in +++ b/command.cfg.in @@ -140,10 +140,10 @@ command[snmp_tcpstats]=@libexecdir@/check_snmp -H $HOSTADDRESS$ -C $ARG1$ -o tcp command[check_ifstatus]=@libexecdir@/check_ifstatus -H $HOSTADDRESS$ -C public # check particular interface by snmp ifIndex key -command[check_ifoperstatus]=@libexecdir@/check_ifoperstatus -H $HOSTADDRESS$ -C public -k $ARG1$ +command[check_ifoperstatus_ifindex]=@libexecdir@/check_ifoperstatus -H $HOSTADDRESS$ -C public -k $ARG1$ # check particular interface by snmp ifDescr value (verify uniqueness before using) -command[check_ifoperstatus]=@libexecdir@/check_ifoperstatus -H $HOSTADDRESS$ -C public -d $ARG1$ +command[check_ifoperstatus_ifdescr]=@libexecdir@/check_ifoperstatus -H $HOSTADDRESS$ -C public -d $ARG1$ # verify all you BGP session on a device are running (only returns warning due to some hardcoded option - to be fixed soon) command[check_snmp_bgpstate]=@libexecdir@/check_bgpstate -H $HOSTADDRESS$ -C public diff --git a/configure.in b/configure.in index 2784b2d7..2c90ebff 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_REVISION ($Revision$) +AC_PREREQ(2.50) AC_INIT(Helper.pm) VER=1.3.99 REL=1 |