Maintainer update to version 1.7

PR:		ports/46903
Submitted by:	Paul Dlug <paul@nerdlabs.com>
This commit is contained in:
Edwin Groothuis 2003-01-09 22:13:58 +00:00
parent 1faf648c48
commit 92fdd64a1d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=72825
12 changed files with 228 additions and 6 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= nrpe
PORTVERSION= 1.5
PORTVERSION= 1.7
PORTREVISION= 0
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
@ -18,8 +18,13 @@ RUN_DEPENDS= ${LOCALBASE}/libexec/nagios/check_nagios:${PORTSDIR}/net/nagios-
GNU_CONFIGURE= yes
pre-install:
@PKG_PREFIX="${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
${SED} -i bak -e "s=/usr/local/bin/nrpe=${PREFIX}/sbin/nrpe=" ${WRKSRC}/init-script.freebsd
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/nrpe ${PREFIX}/sbin/nrpe
${INSTALL_DATA} ${WRKSRC}/nrpe.cfg ${PREFIX}/etc/nrpe.cfg-sample
${INSTALL_SCRIPT} ${WRKSRC}/init-script.freebsd ${PREFIX}/etc/rc.d/nrpe.sh
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (nrpe-1.5.tar.gz) = 6f9f696e24fe380839e01fc57e29206b
MD5 (nrpe-1.7.tar.gz) = f9462e9446ef1928e27a612ac5f87fdb

68
net-mgmt/nrpe/pkg-install Normal file
View File

@ -0,0 +1,68 @@
#!/bin/sh
#
# $FreeBSD: /tmp/pcvs/ports/net-mgmt/nrpe/Attic/pkg-install,v 1.1 2003-01-09 22:13:58 edwin Exp $
#
PKG_PREFIX=${PKG_PREFIX:=/usr/local}
user=nagios
group=nagios
ask() {
local question default answer
question=$1
default=$2
if [ -z "${PACKAGE_BUILDING}" ]; then
read -p "${question} [${default}]? " answer
fi
if [ x${answer} = x ]; then
answer=${default}
fi
echo ${answer}
}
yesno() {
local dflt question answer
question=$1
dflt=$2
while :; do
answer=$(ask "${question}" "${dflt}")
case "${answer}" in
[Yy]*) return 0;;
[Nn]*) return 1;;
esac
echo "Please answer yes or no."
done
}
if [ x"$2" = xPRE-INSTALL ]; then
if /usr/sbin/pw groupshow "${group}" 2>/dev/null; then
echo "You already have a group \"${group}\", so I will use it."
else
echo "You need a group \"${group}\"."
if yesno "Would you like me to create it" y; then
/usr/sbin/pw groupadd ${group} -h - || exit
echo "Done."
else
echo "Please create it, and try again."
exit 1
fi
fi
if /usr/sbin/pw user show "${user}" 2>/dev/null; then
echo "You already have a user \"${user}\", so I will use it."
else
echo "You need a user \"${user}\"."
if yesno "Would you like me to create it" y; then
/usr/sbin/pw useradd ${user} -g ${group} -h - -d ${PKG_PREFIX}/var/nagios \
-s /nonexistent -c "Nagios pseudo-user" || exit
echo "Done."
else
echo "Please create it, and try again."
exit 1
fi
fi
fi

View File

@ -1,2 +1,3 @@
sbin/nrpe
etc/nrpe.cfg-sample
etc/rc.d/nrpe.sh

View File

@ -6,7 +6,7 @@
#
PORTNAME= nrpe
PORTVERSION= 1.5
PORTVERSION= 1.7
PORTREVISION= 0
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
@ -18,8 +18,13 @@ RUN_DEPENDS= ${LOCALBASE}/libexec/nagios/check_nagios:${PORTSDIR}/net/nagios-
GNU_CONFIGURE= yes
pre-install:
@PKG_PREFIX="${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
${SED} -i bak -e "s=/usr/local/bin/nrpe=${PREFIX}/sbin/nrpe=" ${WRKSRC}/init-script.freebsd
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/nrpe ${PREFIX}/sbin/nrpe
${INSTALL_DATA} ${WRKSRC}/nrpe.cfg ${PREFIX}/etc/nrpe.cfg-sample
${INSTALL_SCRIPT} ${WRKSRC}/init-script.freebsd ${PREFIX}/etc/rc.d/nrpe.sh
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (nrpe-1.5.tar.gz) = 6f9f696e24fe380839e01fc57e29206b
MD5 (nrpe-1.7.tar.gz) = f9462e9446ef1928e27a612ac5f87fdb

View File

@ -0,0 +1,68 @@
#!/bin/sh
#
# $FreeBSD: /tmp/pcvs/ports/net-mgmt/nrpe2/Attic/pkg-install,v 1.1 2003-01-09 22:13:58 edwin Exp $
#
PKG_PREFIX=${PKG_PREFIX:=/usr/local}
user=nagios
group=nagios
ask() {
local question default answer
question=$1
default=$2
if [ -z "${PACKAGE_BUILDING}" ]; then
read -p "${question} [${default}]? " answer
fi
if [ x${answer} = x ]; then
answer=${default}
fi
echo ${answer}
}
yesno() {
local dflt question answer
question=$1
dflt=$2
while :; do
answer=$(ask "${question}" "${dflt}")
case "${answer}" in
[Yy]*) return 0;;
[Nn]*) return 1;;
esac
echo "Please answer yes or no."
done
}
if [ x"$2" = xPRE-INSTALL ]; then
if /usr/sbin/pw groupshow "${group}" 2>/dev/null; then
echo "You already have a group \"${group}\", so I will use it."
else
echo "You need a group \"${group}\"."
if yesno "Would you like me to create it" y; then
/usr/sbin/pw groupadd ${group} -h - || exit
echo "Done."
else
echo "Please create it, and try again."
exit 1
fi
fi
if /usr/sbin/pw user show "${user}" 2>/dev/null; then
echo "You already have a user \"${user}\", so I will use it."
else
echo "You need a user \"${user}\"."
if yesno "Would you like me to create it" y; then
/usr/sbin/pw useradd ${user} -g ${group} -h - -d ${PKG_PREFIX}/var/nagios \
-s /nonexistent -c "Nagios pseudo-user" || exit
echo "Done."
else
echo "Please create it, and try again."
exit 1
fi
fi
fi

View File

@ -1,2 +1,3 @@
sbin/nrpe
etc/nrpe.cfg-sample
etc/rc.d/nrpe.sh

View File

@ -6,7 +6,7 @@
#
PORTNAME= nrpe
PORTVERSION= 1.5
PORTVERSION= 1.7
PORTREVISION= 0
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
@ -18,8 +18,13 @@ RUN_DEPENDS= ${LOCALBASE}/libexec/nagios/check_nagios:${PORTSDIR}/net/nagios-
GNU_CONFIGURE= yes
pre-install:
@PKG_PREFIX="${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
${SED} -i bak -e "s=/usr/local/bin/nrpe=${PREFIX}/sbin/nrpe=" ${WRKSRC}/init-script.freebsd
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/nrpe ${PREFIX}/sbin/nrpe
${INSTALL_DATA} ${WRKSRC}/nrpe.cfg ${PREFIX}/etc/nrpe.cfg-sample
${INSTALL_SCRIPT} ${WRKSRC}/init-script.freebsd ${PREFIX}/etc/rc.d/nrpe.sh
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (nrpe-1.5.tar.gz) = 6f9f696e24fe380839e01fc57e29206b
MD5 (nrpe-1.7.tar.gz) = f9462e9446ef1928e27a612ac5f87fdb

68
net/nrpe/pkg-install Normal file
View File

@ -0,0 +1,68 @@
#!/bin/sh
#
# $FreeBSD: /tmp/pcvs/ports/net/nrpe/Attic/pkg-install,v 1.1 2003-01-09 22:13:58 edwin Exp $
#
PKG_PREFIX=${PKG_PREFIX:=/usr/local}
user=nagios
group=nagios
ask() {
local question default answer
question=$1
default=$2
if [ -z "${PACKAGE_BUILDING}" ]; then
read -p "${question} [${default}]? " answer
fi
if [ x${answer} = x ]; then
answer=${default}
fi
echo ${answer}
}
yesno() {
local dflt question answer
question=$1
dflt=$2
while :; do
answer=$(ask "${question}" "${dflt}")
case "${answer}" in
[Yy]*) return 0;;
[Nn]*) return 1;;
esac
echo "Please answer yes or no."
done
}
if [ x"$2" = xPRE-INSTALL ]; then
if /usr/sbin/pw groupshow "${group}" 2>/dev/null; then
echo "You already have a group \"${group}\", so I will use it."
else
echo "You need a group \"${group}\"."
if yesno "Would you like me to create it" y; then
/usr/sbin/pw groupadd ${group} -h - || exit
echo "Done."
else
echo "Please create it, and try again."
exit 1
fi
fi
if /usr/sbin/pw user show "${user}" 2>/dev/null; then
echo "You already have a user \"${user}\", so I will use it."
else
echo "You need a user \"${user}\"."
if yesno "Would you like me to create it" y; then
/usr/sbin/pw useradd ${user} -g ${group} -h - -d ${PKG_PREFIX}/var/nagios \
-s /nonexistent -c "Nagios pseudo-user" || exit
echo "Done."
else
echo "Please create it, and try again."
exit 1
fi
fi
fi

View File

@ -1,2 +1,3 @@
sbin/nrpe
etc/nrpe.cfg-sample
etc/rc.d/nrpe.sh