summaryrefslogtreecommitdiffstats
path: root/system/netdata-freebsd.in
blob: fac2e82c265ce7f1d0d5691b6348529e740cbd73 (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
#!/bin/sh

. /etc/rc.subr

name=netdata
rcvar=netdata_enable

pidfile="@localstatedir_POST@/run/netdata.pid"

command="@sbindir_POST@/netdata"
command_args="-P ${pidfile}"

required_files="@sysconfdir_POST@/netdata/netdata.conf"

start_precmd="netdata_prestart"
stop_postcmd="netdata_poststop"

extra_commands="reloadhealth savedb"

reloadhealth_cmd="netdata_reloadhealth"
savedb_cmd="netdata_savedb"

netdata_prestart()
{
	return 0
}

netdata_poststop()
{
	return 0
}

netdata_reloadhealth()
{
    p=`cat ${pidfile}`
    kill -USR2 ${p} && echo "Sent USR2 (reload health) to pid ${p}"
    return 0
}

netdata_savedb()
{
    p=`cat ${pidfile}`
    kill -USR2 ${p} && echo "Sent USR1 (save db) to pid ${p}"
    return 0
}

load_rc_config $name
run_rc_command "$1"