From fa618ad4282bbbbd35ee53dcd71fed599fec9e68 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 18:21:12 +0200 Subject: Adding upstream version 4.1.0. Signed-off-by: Daniel Baumann --- startup/bsd-init.in | 90 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 startup/bsd-init.in (limited to 'startup/bsd-init.in') diff --git a/startup/bsd-init.in b/startup/bsd-init.in new file mode 100644 index 0000000..96551ae --- /dev/null +++ b/startup/bsd-init.in @@ -0,0 +1,90 @@ +#!/bin/sh + +# Start/stop/restart/reload nrpe +# Copyright (c) 2016 Nagios(R) Core(TM) Development Team + +NRPE_BIN=@sbindir@/nrpe +NRPE_CFG=@pkgsysconfdir@/nrpe.cfg +PID_DIR=@piddir@ +PID_FILE=@piddir@/nrpe.pid + +# Start nrpe +nrpe_start() { + echo -n "Starting nrpe daemon: $NRPE_BIN - " + if [ ! -d "$PID_DIR" ]; then + mkdir -p "$PID_DIR" + fi + $NRPE_BIN -c $NRPE_CFG -d + if [ $? = 0 ]; then + echo "started" + else + echo "failed" + fi +} + +# Stop nrpe +nrpe_stop() { + echo -n "Stopping nrpe daemon - " + if [ -r "$PID_FILE" ]; then + kill $(cat "$PID_FILE") + else + killall nrpe + fi + if [ $? = 0 ]; then + echo "stopped" + else + echo "failed" + fi +} + +# Restart nrpe +nrpe_restart() { + nrpe_stop + sleep 1 + nrpe_start +} + +# Reload nrpe +nrpe_reload() { + echo -n "Reloading nrpe daemon - " + if [ -r "$PID_FILE" ]; then + kill -HUP $(cat "$PID_FILE") + else + killall -HUP nrpe + fi + if [ $? = 0 ]; then + echo "reloaded" + else + echo "failed" + fi +} + +# nrpe status +nrpe_status() { + if ps -C nrpe >/dev/null; then + echo "nrpe is running." + else + echo "nrpe is stopped." + fi +} + +case "$1" in +'start') + nrpe_start + ;; +'stop') + nrpe_stop + ;; +'restart') + nrpe_restart + ;; +'reload') + nrpe_reload + ;; +'status') + nrpe_status + ;; +*) + echo "Usage $0 start|stop|restart|reload|status" + ;; +esac -- cgit v1.2.3