summaryrefslogtreecommitdiffstats
path: root/startup/openrc-init.in
diff options
context:
space:
mode:
Diffstat (limited to 'startup/openrc-init.in')
-rw-r--r--startup/openrc-init.in21
1 files changed, 21 insertions, 0 deletions
diff --git a/startup/openrc-init.in b/startup/openrc-init.in
new file mode 100644
index 0000000..c123c95
--- /dev/null
+++ b/startup/openrc-init.in
@@ -0,0 +1,21 @@
+#!/sbin/openrc-run
+#
+# Copyright (c) 2017 Nagios(R) Core(TM) Development Team
+#
+
+# Supply a default value for NRPE_CFG in case the corresponding
+# conf.d file is not installed.
+: ${NRPE_CFG:="@sysconfdir@/nrpe.cfg"}
+
+command="@sbindir@/nrpe"
+command_args="--config=${NRPE_CFG} ${NRPE_OPTS}"
+command_args_background="--daemon"
+description="Nagios Remote Plugin Executor (NRPE) daemon"
+extra_started_commands="reload"
+pidfile="@piddir@/${RC_SVCNAME}.pid"
+
+reload() {
+ ebegin "Reloading ${RC_SVCNAME}"
+ start-stop-daemon --signal HUP --pidfile "${pidfile}"
+ eend $?
+}