91d4fbbbf6
Changes: see https://labs.consol.de/de/nagios/check_mysql_health/ The changelog is in english, but the english page (/en/) is not up2date - 2.2.1 - 2015-08-18 fix the autoconf m4, so the debian-builds don't fail (thanks Jan Wagner) - 2.2 - 2015-04-23 add rfc3986-encoded passwords - 2.1.9.2 2014-12-22 bugfix in InnoDB initialization & versions > 5.6.1 (Thanks Jorg Veit) - 2.1.9.1 2014-06-12 add connections_aborted, open_files to the pnp template (Thanks Simon Meggle) - 2.1.9 2014-06-12 bugfix in pnp template (Thanks Simon Meggle) bugfix in qcache calculation (Thanks lermit) - 2.1.8.4 2014-04-01 implement -negate old_level=new_level allow floating point numbers in thresholds - 2.1.8.3 2012-10-15 output also ok-messages for my-modes - 2.1.8.2 2012-08-08 bugfix in querycache-hitrate (div by 0 after db restart). (Thanks Gianluca Varisco) - 2.1.8.1 2012-01-21 bugfix in timeout-alarm handling under windows fix warnings for newest perl versions - 2.1.8 2011-09-29 new parameters -mycnf and -mycnfgroup single ticks around the -name argument under Windows CMD will be removed automatically - 2.1.7 2011-08-23 innodb modes now detect problems with the innodb engine - 2.1.6 2011-08-12 fix a bug with statefilesdir and capital letters add -labelformat so that groundwork no longer complains (max label length is 19 characters) - 2.1.5.2 2011-06-03 sites in an OMD (http://omdistro.org) environment have now private statefile directories
34 lines
847 B
Makefile
34 lines
847 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= check_mysql_health
|
|
PORTVERSION= 2.2.1
|
|
CATEGORIES= net-mgmt
|
|
MASTER_SITES= https://labs.consol.de/assets/downloads/nagios/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Nagios plugin to check various parameters of a MySQL database
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
RUN_DEPENDS= p5-DBD-mysql>=0:${PORTSDIR}/databases/p5-DBD-mysql
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-statefiles-dir=${NAGIOSDIR} \
|
|
--with-nagios-user=${NAGIOSUSER} \
|
|
--with-nagios-group=${NAGIOSGROUP} \
|
|
--with-mymodules-dir=${PREFIX}/libexec/nagios \
|
|
--with-mymodules-dyn-dir=${PREFIX}/libexec/nagios \
|
|
--libexecdir=${PREFIX}/libexec/nagios \
|
|
--with-perl=${PERL}
|
|
|
|
USES= perl5
|
|
NO_ARCH= yes
|
|
|
|
NAGIOSUSER?= nagios
|
|
NAGIOSGROUP?= nagios
|
|
NAGIOSDIR?= /var/spool/nagios
|
|
|
|
PLIST_FILES= libexec/nagios/check_mysql_health
|
|
|
|
.include <bsd.port.mk>
|