From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 11 23:30:07 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9BD116A41F for ; Wed, 11 Jan 2006 23:30:07 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92C5843D49 for ; Wed, 11 Jan 2006 23:30:06 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k0BNU6tD048829 for ; Wed, 11 Jan 2006 23:30:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k0BNU6p1048828; Wed, 11 Jan 2006 23:30:06 GMT (envelope-from gnats) Resent-Date: Wed, 11 Jan 2006 23:30:06 GMT Resent-Message-Id: <200601112330.k0BNU6p1048828@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Martin Pala Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2411A16A420 for ; Wed, 11 Jan 2006 23:22:22 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id B12BE43D46 for ; Wed, 11 Jan 2006 23:22:21 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id k0BNMLLt057037 for ; Wed, 11 Jan 2006 23:22:21 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k0BNMLBn057036; Wed, 11 Jan 2006 23:22:21 GMT (envelope-from nobody) Message-Id: <200601112322.k0BNMLBn057036@www.freebsd.org> Date: Wed, 11 Jan 2006 23:22:21 GMT From: Martin Pala To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: ports/91692: Update port: sysutils/monit X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jan 2006 23:30:07 -0000 >Number: 91692 >Category: ports >Synopsis: Update port: sysutils/monit >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Jan 11 23:30:05 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Martin Pala >Release: FreeBSD 5.3-RELEASE i386 >Organization: >Environment: System: FreeBSD panama.localdomain 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Thu Jan 12 00:20:11 UTC 2006 root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: Update upgrades the sysutils/monit port to Monit 4.7 for bugfixes and feature enhancements >How-To-Repeat: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # monit # monit/files # monit/files/monit.sh # monit/Makefile # monit/distinfo # monit/pkg-descr # monit/pkg-message # echo c - monit mkdir -p monit > /dev/null 2>&1 echo c - monit/files mkdir -p monit/files > /dev/null 2>&1 echo x - monit/files/monit.sh sed 's/^X//' >monit/files/monit.sh << 'END-of-monit/files/monit.sh' X#!/bin/sh X# X# $FreeBSD$ X# X X# PROVIDE: monit X# REQUIRE: NETWORKING SERVERS X# BEFORE: DAEMON X# KEYWORD: shutdown X X# X# Add the following lines to /etc/rc.conf to enable monit: X# monit_enable (bool): Set to "NO" by default. X# Set it to "YES" to enable monit X# X. %%RC_SUBR%% X Xname="monit" Xrcvar=`set_rcvar` X Xrestart_precmd="monit_checkconfig" Xreload_precmd="monit_checkconfig" X Xdefault_config=%%PREFIX%%/etc/monitrc Xrequired_files=${default_config} Xcommand="%%PREFIX%%/bin/monit" Xcommand_args="-c ${default_config}" Xpidfile="/var/run/monit.pid" X X[ -z "$monit_enable" ] && monit_enable="NO" X Xload_rc_config $name X Xmonit_checkconfig() X{ X echo "Performing sanity check on monit configuration:" X ${command} ${command_args} -t X} X Xextra_commands="reload" Xrun_rc_command "$1" END-of-monit/files/monit.sh echo x - monit/Makefile sed 's/^X//' >monit/Makefile << 'END-of-monit/Makefile' X# New ports collection makefile for: monit X# Date created: 11 Januar 2006 X# Whom: Martin Pala X# X# $FreeBSD$ X# X XPORTNAME= monit XPORTVERSION= 4.7 XCATEGORIES= sysutils XMASTER_SITES= http://www.tildeslash.com/monit/dist/ X XMAINTAINER= martinp@tildeslash.com XCOMMENT= Unix system management and monitoring X XMAN1= monit.1 X XGNU_CONFIGURE= yes XUSE_GMAKE= yes XUSE_BISON= yes XUSE_RC_SUBR= yes X XCONFIGURE_ENV= CC="${CC}" CPPFLAGS="${CPPFLAGS}" \ X CFLAGS="${CFLAGS}" \ X LDFLAGS="${LDFLAGS}" CONFIG_SHELL="${SH}" \ X LOCALBASE="${LOCALBASE}" X XOPTIONS= MONIT_SSL "Enable SSL support" on X XPLIST_FILES= bin/monit \ X etc/monitrc.sample \ X etc/rc.d/monit.sh \ X share/doc/monit/CHANGES.txt \ X share/doc/monit/CONTRIBUTORS \ X share/doc/monit/FAQ.txt \ X share/doc/monit/LICENSE \ X share/doc/monit/README \ X share/doc/monit/README.SSL \ X share/doc/monit/STATUS \ X share/doc/monit/examples.html \ X share/doc/monit/monit.html XPLIST_DIRS= share/doc/monit X X.include X Xpre-install: X @${SED} -e 's|%%PREFIX%%|${PREFIX}|g' \ X -e 's|%%RC_SUBR%%|${RC_SUBR}|g' \ X ${FILESDIR}/monit.sh > ${WRKDIR}/monit.sh X Xpost-install: X @${INSTALL_SCRIPT} -m 755 ${WRKDIR}/monit.sh ${PREFIX}/etc/rc.d/monit.sh X @${INSTALL_SCRIPT} -m 600 ${WRKDIR}/${DISTNAME}/monitrc ${PREFIX}/etc/monitrc.sample X ${MKDIR} ${DOCSDIR} X @${INSTALL_SCRIPT} -m 644 ${WRKDIR}/${DISTNAME}/CHANGES.txt ${PREFIX}/share/doc/monit/CHANGES.txt X @${INSTALL_SCRIPT} -m 644 ${WRKDIR}/${DISTNAME}/CONTRIBUTORS ${PREFIX}/share/doc/monit/CONTRIBUTORS X @${INSTALL_SCRIPT} -m 644 ${WRKDIR}/${DISTNAME}/FAQ.txt ${PREFIX}/share/doc/monit/FAQ.txt X @${INSTALL_SCRIPT} -m 644 ${WRKDIR}/${DISTNAME}/LICENSE ${PREFIX}/share/doc/monit/LICENSE X @${INSTALL_SCRIPT} -m 644 ${WRKDIR}/${DISTNAME}/README ${PREFIX}/share/doc/monit/README X @${INSTALL_SCRIPT} -m 644 ${WRKDIR}/${DISTNAME}/README.SSL ${PREFIX}/share/doc/monit/README.SSL X @${INSTALL_SCRIPT} -m 644 ${WRKDIR}/${DISTNAME}/STATUS ${PREFIX}/share/doc/monit/STATUS X @${INSTALL_SCRIPT} -m 644 ${WRKDIR}/${DISTNAME}/doc/examples.html ${PREFIX}/share/doc/monit/examples.html X @${INSTALL_SCRIPT} -m 644 ${WRKDIR}/${DISTNAME}/doc/monit.html ${PREFIX}/share/doc/monit/monit.html X @${CAT} ${PKGMESSAGE} X @${ECHO_MSG} " ${PREFIX}/etc/monitrc.sample" X @${ECHO_MSG} " ${PREFIX}/share/doc/monit/examples.html" X X.if defined(WITH_MONIT_SSL) X.include "${PORTSDIR}/Mk/bsd.openssl.mk" XCONFIGURE_ARGS+= --enable-ssl \ X --with-openssl="${OPENSSLBASE}" X.else XCONFIGURE_ARGS+= --without-ssl X.endif X X.include END-of-monit/Makefile echo x - monit/distinfo sed 's/^X//' >monit/distinfo << 'END-of-monit/distinfo' XMD5 (monit-4.7.tar.gz) = 29423851d60c369c4c9d08f77253c2bc XSIZE (monit-4.7.tar.gz) = 554320 END-of-monit/distinfo echo x - monit/pkg-descr sed 's/^X//' >monit/pkg-descr << 'END-of-monit/pkg-descr' XMonit is a utility for managing and monitoring processes, Xfiles, directories, devices and network services on a Unix system. XMonit conducts automatic maintenance and repair and can execute Xmeaningful causal actions in error situations. X Xmonit supports: X * Daemon mode - poll services at a specified interval X * Group and manage groups of services, service dependencies X * Logging - syslog or own logfile X * Alert, start, stop and restart of services based on it's characteristics X * MD5 and SHA1 checksums X * Runtime Unix socket and TCP/IP port checking (tcp and udp) X * Process status, timeout, memory and cpu usage, etc. X * Device usage monitoring (inodes and space) X * File monitoring (timestamp, checksum, permission, owner, etc.) X * Directory monitoring (timestamp, permission, owner, etc.) X * Remote network services monitoring (ping, response time, protocol, etc.) X * System load average monitoring X * Flexible and customizable email alert messages and notifications X * Protocol verification such as HTTP, FTP, SMTP, POP, IMAP, NNTP, NTP, etc. X * A HTTP interface with XML output option X and many more features :) X XWWW: http://www.tildeslash.com/monit/ END-of-monit/pkg-descr echo x - monit/pkg-message sed 's/^X//' >monit/pkg-message << 'END-of-monit/pkg-message' X===> USAGE: X To enable monit you need to add monit_enable="YES" to rc.conf file. X Before running monit you have to configure monitrc file. There is X example configuration file monitrc.sample, you can find many X samples for particular services in examples.html: END-of-monit/pkg-message exit >Fix: >Release-Note: >Audit-Trail: >Unformatted: