blob: adb5502d55ff0e4b4b21dbaaa402f94b019d75b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#!/sbin/openrc-run
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
: ${CFGFILE:=/etc/nagios/nrpe.cfg}
get_config() {
[ -f ${CFGFILE} ] || return 1
sed -n -e 's:^[ \t]*'$1'=\([^#]\+\).*:\1:p' \
${CFGFILE}
}
extra_started_commands="reload"
command=/usr/libexec/${SVCNAME}
command_args="-c ${CFGFILE} --daemon"
pidfile=$(get_config pid_file)
depend() {
config ${CFGFILE}
}
reload() {
ebegin "Reloading ${SVCNAME}"
kill -1 `cat ${pidfile}`
eend $?
}
start()
{
mkdir -p $(dirname $pidfile)
local _background=
ebegin "Starting ${name:-$RC_SVCNAME}"
eval start-stop-daemon --start \
--exec $command \
${procname:+--name} $procname \
${pidfile:+--pidfile} $pidfile \
$_background $start_stop_daemon_args \
-- $command_args
if eend $? "Failed to start $RC_SVCNAME"; then
service_set_value "command" "${command}"
[ -n "${pidfile}" ] && service_set_value "pidfile" "${pidfile}"
[ -n "${procname}" ] && service_set_value "procname" "${procname}"
return 0
fi
return 1
}
|