74873b26a8
-- Main changes: * Monit now reloads configuration ONLY after it receives SIGHUP. Automatic reload based on monit's control file timestamp is now defunct. * New monit command 'reload' is added. If used, it will reinitialize a running monit daemon (send it the SIGHUP signal). * A new monit option '-t' is added. If used, monit will run a syntax check for the control file and exit with the status. * The ssl version for TCPSSL tests can now explicitly be set if auto- detection should fail. (Thanks to Mark Foster for the bugreport) * Added support for LDAPv2 and LDAPv3, and DWP. * Restart method added to monit httpd cervlet * Alert messages in passive mode fixed * Console command "monit restart [service]" in daemon mode fixed * Start/stop/restart race condition fixed. Changelog: http://www.tildeslash.com/monit/changes.html Patches OpenBSD specific submitted to authors.
41 lines
1010 B
Makefile
41 lines
1010 B
Makefile
# $OpenBSD: Makefile,v 1.3 2003/06/01 23:14:16 margarida Exp $
|
|
|
|
COMMENT= "monitoring and managing daemons utility"
|
|
|
|
VERSION= 3.2
|
|
DISTNAME= monit-${VERSION}
|
|
CATEGORIES= sysutils
|
|
|
|
HOMEPAGE= http://www.tildeslash.com/monit/
|
|
|
|
MASTER_SITES= ${HOMEPAGE}dist/
|
|
|
|
MAINTAINER= Margarida Sequeira <margarida@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
USE_GMAKE= Yes
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/monit
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/monit/api-docs
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/monit
|
|
cd ${WRKSRC} && ${INSTALL_DATA} FAQ.txt README.SSL \
|
|
${PREFIX}/share/doc/monit
|
|
cd ${WRKSRC}/doc && ${INSTALL_DATA} monit.html examples.html \
|
|
${PREFIX}/share/doc/monit
|
|
cd ${WRKSRC}/doc/api-docs && ${INSTALL_DATA} * \
|
|
${PREFIX}/share/doc/monit/api-docs
|
|
cd ${WRKSRC} && ${INSTALL_DATA} monitrc \
|
|
${PREFIX}/share/examples/monit
|
|
|
|
.include <bsd.port.mk>
|