72450bee8c
- Always link server against pthread libs when sqlite3 is selected - Clean up a bit
16 lines
273 B
Bash
16 lines
273 B
Bash
#!/bin/sh
|
|
# PROVIDE: zabbix_agentd
|
|
# REQUIRE: DAEMON
|
|
# KEYWORD: shutdown
|
|
|
|
. %%RC_SUBR%%
|
|
|
|
name="zabbix_agentd"
|
|
rcvar=${name}_enable
|
|
load_rc_config $name
|
|
eval : \${${rcvar}='NO'}
|
|
|
|
command="%%PREFIX%%/bin/${name}"
|
|
required_files="%%ETCDIR%%/${name}.conf"
|
|
|
|
run_rc_command "$1"
|