mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 12:50:22 +02:00
nagios-nrpe: add recipe with latest stable version 3.2.1
Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
This commit is contained in:
parent
7929c468f0
commit
a73f7b18bc
11
recipes-extended/nagios/nagios-nrpe/check_nrpe.cfg
Normal file
11
recipes-extended/nagios/nagios-nrpe/check_nrpe.cfg
Normal file
|
@ -0,0 +1,11 @@
|
|||
# this command runs a program $ARG1$ with arguments $ARG2$
|
||||
define command {
|
||||
command_name check_nrpe
|
||||
command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$ -a $ARG2$
|
||||
}
|
||||
|
||||
# this command runs a program $ARG1$ with no arguments
|
||||
define command {
|
||||
command_name check_nrpe_1arg
|
||||
command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$
|
||||
}
|
|
@ -0,0 +1,43 @@
|
|||
fix compile without openssl
|
||||
|
||||
Build with --disable-ssl causes the build to break with
|
||||
this error:
|
||||
|
||||
error: unknown type name 'SSL'
|
||||
void complete_SSL_shutdown( SSL *);
|
||||
|
||||
Signed-off-by: Rickard Engberg <rickard.engberg@windriver.com>
|
||||
Signed-off-by: Vu Tran <vu.tran@windriver.com>
|
||||
|
||||
Index: nrpe-2.15/src/nrpe.c
|
||||
===================================================================
|
||||
--- nrpe-2.15.orig/src/nrpe.c 2013-09-06 17:27:13.000000000 +0200
|
||||
+++ nrpe-2.15/src/nrpe.c 2013-11-20 23:22:49.546791020 +0100
|
||||
@@ -99,9 +99,9 @@
|
||||
int debug=FALSE;
|
||||
int use_src=FALSE; /* Define parameter for SRC option */
|
||||
|
||||
-
|
||||
+#ifdef HAVE_SSL
|
||||
void complete_SSL_shutdown( SSL *);
|
||||
-
|
||||
+#endif
|
||||
|
||||
int main(int argc, char **argv){
|
||||
int result=OK;
|
||||
@@ -1796,6 +1796,7 @@
|
||||
return OK;
|
||||
}
|
||||
|
||||
+#ifdef HAVE_SSL
|
||||
void complete_SSL_shutdown( SSL *ssl) {
|
||||
|
||||
/*
|
||||
@@ -1816,6 +1817,7 @@
|
||||
if( SSL_shutdown( ssl)) break;
|
||||
}
|
||||
}
|
||||
+#endif
|
||||
|
||||
/* bail if daemon is running as root */
|
||||
int check_privileges(void){
|
|
@ -0,0 +1,52 @@
|
|||
fix configure uses host openssl
|
||||
|
||||
include/dh.h file is needed to be generated with command:
|
||||
|
||||
openssl dhparam -C 512
|
||||
|
||||
just do not use openssl from host.
|
||||
|
||||
Signed-off-by: Rickard Engberg <rickard.engberg@windriver.com>
|
||||
Signed-off-by: Vu Tran <vu.tran@windriver.com>
|
||||
|
||||
Index: nrpe-2.15/configure.in
|
||||
===================================================================
|
||||
--- nrpe-2.15.orig/configure.in 2013-09-06 17:27:13.000000000 +0200
|
||||
+++ nrpe-2.15/configure.in 2013-11-21 14:09:31.798606782 +0100
|
||||
@@ -330,17 +330,6 @@
|
||||
|
||||
AC_DEFINE_UNQUOTED(HAVE_SSL,[1],[Have SSL support])
|
||||
AC_SUBST(HAVE_SSL)
|
||||
-
|
||||
- dnl Generate DH parameters
|
||||
- echo ""
|
||||
- echo "*** Generating DH Parameters for SSL/TLS ***"
|
||||
- if test -f "$ssldir/sbin/openssl"; then
|
||||
- sslbin=$ssldir/sbin/openssl
|
||||
- else
|
||||
- sslbin=$ssldir/bin/openssl
|
||||
- fi
|
||||
- # awk to strip off meta data at bottom of dhparam output
|
||||
- $sslbin dhparam -C 512 | awk '/^-----/ {exit} {print}' > include/dh.h
|
||||
fi
|
||||
fi
|
||||
|
||||
Index: nrpe-2.15/configure
|
||||
===================================================================
|
||||
--- nrpe-2.15.orig/configure 2013-09-06 17:27:13.000000000 +0200
|
||||
+++ nrpe-2.15/configure 2013-11-21 14:11:45.491269701 +0100
|
||||
@@ -6738,14 +6738,6 @@
|
||||
|
||||
|
||||
echo ""
|
||||
- echo "*** Generating DH Parameters for SSL/TLS ***"
|
||||
- if test -f "$ssldir/sbin/openssl"; then
|
||||
- sslbin=$ssldir/sbin/openssl
|
||||
- else
|
||||
- sslbin=$ssldir/bin/openssl
|
||||
- fi
|
||||
- # awk to strip off meta data at bottom of dhparam output
|
||||
- $sslbin dhparam -C 512 | awk '/^-----/ {exit} {print}' > include/dh.h
|
||||
fi
|
||||
fi
|
||||
|
10
recipes-extended/nagios/nagios-nrpe/nagios-nrpe.service
Normal file
10
recipes-extended/nagios/nagios-nrpe/nagios-nrpe.service
Normal file
|
@ -0,0 +1,10 @@
|
|||
[Unit]
|
||||
Description=Nagios nrpe plugin
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/bin/nrpe -c /etc/nagios/nrpe.cfg -f
|
||||
TimeoutSec=60
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
100
recipes-extended/nagios/nagios-nrpe_3.2.1.bb
Normal file
100
recipes-extended/nagios/nagios-nrpe_3.2.1.bb
Normal file
|
@ -0,0 +1,100 @@
|
|||
require nagios-common.inc
|
||||
|
||||
DESCRIPTION = "Nagios Remote Plugin Executor"
|
||||
HOMEPAGE = "http://exchange.nagios.org"
|
||||
SECTION = "console/network"
|
||||
PRIORITY = "optional"
|
||||
LICENSE = "GPLv2"
|
||||
|
||||
LIC_FILES_CHKSUM = "file://src/nrpe.c;beginline=1;endline=35;md5=0dadd78599abbc737af81432702e9161"
|
||||
|
||||
SRCNAME = "nrpe"
|
||||
|
||||
SRC_URI = "https://github.com/NagiosEnterprises/nrpe/releases/download/${SRCNAME}-${PV}/${SRCNAME}-${PV}.tar.gz \
|
||||
file://check_nrpe.cfg \
|
||||
file://nagios-nrpe.service \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "8997e195fea93cdceb8c7ed8ac1d43bc"
|
||||
SRC_URI[sha256sum] = "8ad2d1846ab9011fdd2942b8fc0c99dfad9a97e57f4a3e6e394a4ead99c0f1f0"
|
||||
|
||||
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
inherit autotools-brokensep update-rc.d systemd
|
||||
|
||||
# IP address of server which proxy should connect to
|
||||
MONITORING_PROXY_SERVER_IP ??= "192.168.7.2"
|
||||
|
||||
# IP address of server which agent should connect to
|
||||
MONITORING_AGENT_SERVER_IP ??= "192.168.7.4"
|
||||
|
||||
EXTRA_OECONF += "--with-nrpe-user=${NAGIOS_USER} \
|
||||
--with-nrpe-group=${NAGIOS_GROUP} \
|
||||
ac_cv_lib_wrap_main=no \
|
||||
ac_cv_path_PERL=${bindir}/perl \
|
||||
"
|
||||
|
||||
EXTRA_OECONF_SSL = "--with-ssl=${STAGING_DIR_HOST} \
|
||||
--with-ssl-inc=${STAGING_DIR_HOST}${includedir} \
|
||||
--with-ssl-lib=${STAGING_DIR_HOST}${libdir} \
|
||||
"
|
||||
|
||||
PACKAGECONFIG[ssl] = "${EXTRA_OECONF_SSL},--disable-ssl,openssl,"
|
||||
PACKAGECONFIG[cmdargs] = "--enable-command-args,--disable-command-args,,"
|
||||
PACKAGECONFIG[bashcomp] = "--enable-bash-command-substitution,--disable-bash-command-substitution,,"
|
||||
|
||||
PACKAGECONFIG ??= "cmdargs bashcomp"
|
||||
|
||||
do_configure() {
|
||||
oe_runconf || die "make failed"
|
||||
}
|
||||
|
||||
do_compile() {
|
||||
oe_runmake all
|
||||
}
|
||||
|
||||
do_install_append() {
|
||||
oe_runmake 'DESTDIR=${D}' install-daemon
|
||||
oe_runmake 'DESTDIR=${D}' install-config
|
||||
|
||||
install -d ${D}${sysconfdir}/init.d
|
||||
install -m 755 ${B}/startup/debian-init ${D}${sysconfdir}/init.d/nrpe
|
||||
|
||||
install -d ${D}${NAGIOS_CONF_DIR}/nrpe.d
|
||||
echo "include_dir=${NAGIOS_CONF_DIR}/nrpe.d" >> ${D}${NAGIOS_CONF_DIR}/nrpe.cfg
|
||||
|
||||
sed -e "s/^allowed_hosts=.*/allowed_hosts=${MONITORING_AGENT_SERVER_IP}/g" \
|
||||
-i ${D}${NAGIOS_CONF_DIR}/nrpe.cfg
|
||||
|
||||
install -d ${D}${NAGIOS_PLUGIN_CONF_DIR}
|
||||
install -m 664 ${WORKDIR}/check_nrpe.cfg ${D}${NAGIOS_PLUGIN_CONF_DIR}
|
||||
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
|
||||
install -d ${D}${systemd_unitdir}/system
|
||||
install -m 644 ${WORKDIR}/nagios-nrpe.service ${D}${systemd_unitdir}/system/
|
||||
fi
|
||||
|
||||
rmdir -p --ignore-fail-on-non-empty ${D}${localstatedir}/nagios
|
||||
}
|
||||
|
||||
PACKAGES = "${PN}-dbg ${PN}-plugin ${PN}-daemon"
|
||||
|
||||
FILES_${PN}-plugin = "${NAGIOS_PLUGIN_DIR} \
|
||||
${NAGIOS_PLUGIN_CONF_DIR} \
|
||||
"
|
||||
|
||||
FILES_${PN}-daemon = "${sysconfdir} \
|
||||
${bindir} \
|
||||
${nonarch_libdir}/tmpfiles.d/ \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN}-daemon = "nagios-base"
|
||||
RDEPENDS_${PN}-plugin = "nagios-base"
|
||||
|
||||
SYSTEMD_PACKAGES = "${PN}-daemon"
|
||||
SYSTEMD_SERVICE_${PN}-daemon = "nagios-nrpe.service"
|
||||
SYSTEMD_AUTO_ENABLE_${PN}-daemon = "enable"
|
||||
|
||||
INITSCRIPT_PACKAGES = "${PN}-daemon"
|
||||
INITSCRIPT_NAME_${PN}-daemon = "nrpe"
|
||||
INITSCRIPT_PARAMS_${PN}-daemon = "defaults"
|
Loading…
Reference in New Issue
Block a user