mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-06 06:30:19 +00:00
352c32a590
monitoring system. This plugin checks the current CPU load and compares the current state to given thresholds, returning the result. It is written as shell script. PR: ports/151995 Submitted by: jamrich.majo at gmail.com
27 lines
570 B
Makefile
27 lines
570 B
Makefile
# New ports collection makefile for: nagios-check_cpu_usage
|
|
# Date created: 2010-11-23
|
|
# Whom: jamrich.majo@gmail.com
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= nagios-check_cpu_usage
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= net-mgmt
|
|
MASTER_SITES= # none
|
|
DISTFILES= # none
|
|
|
|
MAINTAINER= jamrich.majo@gmail.com
|
|
COMMENT= Nagios plug-in to check CPU usage
|
|
|
|
NO_BUILD= yes
|
|
|
|
PLIST_DIRSTRY= libexec/nagios
|
|
PLIST_FILES= libexec/nagios/check_cpu_usage
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/libexec/nagios
|
|
@${INSTALL_SCRIPT} ${.CURDIR}/src/check_cpu_usage ${PREFIX}/libexec/nagios
|
|
|
|
.include <bsd.port.mk>
|