aboutsummaryrefslogtreecommitdiff
path: root/net-mgmt/zabbix3-server/files/zabbix_server.in
blob: 5846853c734a6a9b9955af694a205349e6c7d136 (plain) (blame)
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
#!/bin/sh

# PROVIDE: zabbix_server
# REQUIRE: DAEMON
%%PGSQL%%# REQUIRE: postgresql
%%MYSQL%%# REQUIRE: mysql-server
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf to
# enable zabbix_server:
#
# zabbix_server_enable (bool): Set to NO by default.  Set it to YES to
#         enable zabbix_server.
# zabbix_server_paths (string): Set to standard path by default.  Set a search
#         if you have custom externals that need binaries elsewhere.
# zabbix_server_config (string): Set to the standard config file path by
#         default.
#

. /etc/rc.subr

name="zabbix_server"
rcvar=zabbix_server_enable

load_rc_config $name

: ${zabbix_server_enable="NO"}
: ${zabbix_server_paths=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin}
: ${zabbix_server_config="%%ETCDIR%%/${name}.conf"}

command="%%PREFIX%%/sbin/${name}"
required_files="${zabbix_server_config}"
start_precmd="find_pidfile"
status_precmd="find_pidfile"
stop_precmd="find_pidfile"

find_pidfile()
{
	if get_pidfile_from_conf PidFile ${zabbix_server_config}; then
		pidfile="$_pidfile_from_conf"
	else
		pidfile="/tmp/${name}.pid"
	fi

	# This shouldn't be necessary with pidfile, but empirically it was the
	# only way to reap the parent PID instead of all PIDs from
	# check_process, which may leak SysV IPC objects and prevent restart
	# and/or race condition on restart.
	rc_pid=$(check_pidfile ${pidfile} ${command})
}

export PATH="${zabbix_server_paths}"

run_rc_command "$1"