summaryrefslogtreecommitdiff
blob: 8d39afe05d49635a16919b97d69b7e40aa5530a5 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/sbin/openrc-run
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

extra_commands="configtest"
extra_started_commands="reload"

description="Lightweight graphite metrics router and aggregator."
description_configtest="Run carbon-c-relay's internal config check."
description_reload="Reload the carbon-c-relay configuration without losing connections."

routes_config=${ROUTES_FILE:-/etc/${SVCNAME}.conf}

command="/usr/bin/carbon-c-relay"
command_args="-f ${routes_config} ${EXTRA_OPTS}"
pidfile=${PIDFILE:-/run/${SVCNAME}.pid}
user=${USER:-carbon}
group=${GROUP:-carbon}

depend() {
	need net
	use dns
}

start_pre() {
	if [ "${RC_CMD}" != "restart" ]; then
		configtest || return 1
	fi
	touch /var/log/${SVCNAME}.log
	chown ${user}:${group} /var/log/${SVCNAME}.log
}

stop_pre() {
	if [ "${RC_CMD}" = "restart" ]; then
		configtest || return 1
	fi
}

stop_post() {
	rm -f ${pidfile}
}

start() {
	ebegin "Starting ${SVCNAME}"
	start-stop-daemon --start --background --make-pidfile --pidfile ${pidfile} \
		--stdout /var/log/${SVCNAME}.log \
		--stderr /var/log/${SVCNAME}.log \
		--user ${user} --group ${group} \
		--exec ${command} -- ${command_args}
	eend $?
}

stop() {
	ebegin "Stopping ${SVCNAME}"
	start-stop-daemon --stop --exec ${command} --pidfile ${pidfile}
	eend $?
}

reload() {
	configtest || return 1
	ebegin "Refreshing ${SVCNAME}'s configuration"
	kill -HUP $(< ${pidfile}) &>/dev/null
	eend $? "Failed to reload ${SVCNAME}"
}

configtest() {
	ebegin "Checking ${SVCNAME}'s configuration"
	${command} -f "${routes_config}" -t < /dev/null > /dev/null
	eend $? "failed, please correct errors above"
}