install initscript for NRPE

Install initscript for NRPE addon.

The second version of this patch actually includes the
initscript, which was missing due to lack of coffee the
first time. :-)

Thanks to Michael for catching it.

Resent due to crappy linewrapping in initscript by MUA.

Signed-off-by: Peter Müller <peter.mueller@link38.eu>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Peter Müller
2018-05-09 21:59:41 +02:00
committed by Michael Tremer
parent d8ef6a9537
commit a305ffea8b
2 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
#!/bin/sh
# Begin $rc_base/init.d/nrpe
. /etc/sysconfig/rc
. $rc_functions
NRPEBIN=/usr/bin/nrpe
NRPECFG=/etc/nagios/nrpe.cfg
case "$1" in
start)
boot_mesg "Starting nrpe..."
loadproc $NRPEBIN -c $NRPECFG -d
;;
stop)
boot_mesg "Stopping nrpe..."
killproc $NRPEBIN
rm -f /var/run/nrpe.pid
;;
restart)
$0 stop
sleep 1
$0 start
;;
status)
statusproc $NRPEBIN
;;
*)
echo "Usage: $0 {start|stop|restart|status}"
exit 1
;;
esac
# End $rc_base/init.d/nrpe