summaryrefslogtreecommitdiff
blob: 96e8a482f0355ce665eb3e6942e8cbb0392e3b98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/sbin/openrc-run

configdir="/etc/telegraf/telegraf.d"
configfile="/etc/telegraf/telegraf.conf"
error_log="${logfile:-/var/log/telegraf/telegraf.log}"
command=/usr/bin/telegraf
command_args="-config ${configfile} -config-directory ${configdir}
	${telegraf_opts}"
command_background=yes
command_user=telegraf:telegraf
make_pidfile=yes
pidfile=/var/run/telegraf.pid

reload() {
	ebegin "Reloading ${RC_SVCNAME}"
	start-stop-daemon --signal HUP --pidfile "${PIDFILE}"
	eend $?
}