1
0
mirror of https://github.com/librenms/librenms-agent.git synced 2024-05-09 09:54:52 +00:00

dhcp-status - seperate binary path configuration from code

This commit is contained in:
SourceDoctor
2019-05-05 23:14:58 +02:00
parent d822c899a7
commit 230c53a3f3

View File

@ -4,6 +4,7 @@
# edit your snmpd.conf add the below line and restart snmpd #
# extend dhcpstats /opt/dhcp-status.sh #
################################################################
FILE_DHCP='/var/lib/dhcp/db/dhcpd.leases'
BIN_CAT='/usr/bin/cat'
BIN_GREP='/usr/bin/grep'
@ -11,6 +12,12 @@ BIN_TR='/usr/bin/tr'
BIN_SED='/usr/bin/sed'
BIN_SORT='/usr/bin/sort'
BIN_WC='/usr/bin/wc'
CONFIGFILE=dhcp-status.conf
if [ -f $CONFIGFILE ] ; then
. dhcp-status.conf
fi
DHCP_LEASES='^lease'
DHCP_ACTIVE='^lease|binding state active'
DHCP_EXPIRED='^lease|binding state expired'