hastmon is a monitoring daemon that allows a couple of hosts to run a

service providing automatic failover. Those machines will be called a
cluster and each machine is one cluster node. hastmon is designed for
clusters that work in Primary-Secondary configuration, which means
that only one of the cluster nodes can be active at any given time.

WWW: http://hastmon.googlecode.com/
Author: Mikolaj Golub <to.my.trociny@gmail.com>

PR:		ports/154036
Submitted by:	Mikolaj Golub <to.my.trociny at gmail.com>
This commit is contained in:
Martin Wilke 2011-03-17 17:28:19 +00:00
parent 46698bd4b8
commit c06199448a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=271157
4 changed files with 57 additions and 0 deletions

View File

@ -80,6 +80,7 @@
SUBDIR += grepcidr
SUBDIR += grepip
SUBDIR += gsnmp
SUBDIR += hastmon
SUBDIR += horde-nic
SUBDIR += icinga
SUBDIR += icmpmonitor

46
net-mgmt/hastmon/Makefile Normal file
View File

@ -0,0 +1,46 @@
# New ports collection makefile for: hastmon
# Date created: 23 October 2010
# Whom: Mikolaj Golub <to.my.trociny@gmail.com>
#
# $FreeBSD$
#
PORTNAME= hastmon
PORTVERSION= 0.3.0
CATEGORIES= net-mgmt
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
MAINTAINER= to.my.trociny@gmail.com
COMMENT= Cluster monitoring daemon
BUILD_DEPENDS= mk-configure>=0.20:${PORTSDIR}/devel/mk-configure
LICENSE= BSD
MKCMAKE?= ${LOCALBASE}/bin/mkcmake
INSTALL_TARGET= installdirs install
PORTDOCS= ChangeLog COPYRIGHT README
MAN5= hastmon.conf.5
MAN8= hastmon.8 hastmonctl.8
PLIST_FILES= sbin/hastmon \
sbin/hastmonctl \
etc/rc.d/hastmon
do-build:
${SETENV} ${MKCMAKE_ENV} ${MKCMAKE} -C ${WRKSRC}
do-install:
${SETENV} ${MKCMAKE_ENV} ${MKCMAKE} -C ${WRKSRC} ${INSTALL_TARGET}
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for doc in ${PORTDOCS}
${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/${doc} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (hastmon-0.3.0.tar.gz) = 13e374f8cf269baaf0d7b9f3cc416113fcef833a7638d282e2e40d0f540de8f2
SIZE (hastmon-0.3.0.tar.gz) = 73129

View File

@ -0,0 +1,8 @@
hastmon is a monitoring daemon that allows a couple of hosts to run a
service providing automatic failover. Those machines will be called a
cluster and each machine is one cluster node. hastmon is designed for
clusters that work in Primary-Secondary configuration, which means
that only one of the cluster nodes can be active at any given time.
WWW: http://hastmon.googlecode.com/
Author: Mikolaj Golub <to.my.trociny@gmail.com>