December 22 update
This commit is contained in:
44
jails/config/elk/rc.d/heartbeat
Executable file
44
jails/config/elk/rc.d/heartbeat
Executable file
@ -0,0 +1,44 @@
|
||||
#!/bin/sh
|
||||
|
||||
# PROVIDE: heartbeat
|
||||
# REQUIRE: DAEMON
|
||||
# BEFORE: LOGIN
|
||||
# KEYWORD: shutdown
|
||||
|
||||
# Add the following lines to /etc/rc.conf to enable heartbeat:
|
||||
#
|
||||
# heartbeat_enable (bool): Set to YES to enable heartbeat
|
||||
# Default: NO
|
||||
# heartbeat_flags (str): Extra flags passed to heartbeat
|
||||
# heartbeat_config (str): heartbeat configuration directory
|
||||
# Default: ${PREFIX}/etc/beats
|
||||
# heartbeat_conffile (str): heartbeat configuration file
|
||||
# relative to ${heartbeat_conf}
|
||||
# Default: heartbeat.yml
|
||||
|
||||
. /etc/rc.subr
|
||||
|
||||
name="heartbeat"
|
||||
rcvar=${name}_enable
|
||||
load_rc_config $name
|
||||
|
||||
: ${heartbeat_enable:="NO"}
|
||||
: ${heartbeat_config:="/usr/local/etc/beats"}
|
||||
: ${heartbeat_conffile:="heartbeat.yml"}
|
||||
: ${heartbeat_home:="/usr/local/share/beats/heartbeat"}
|
||||
: ${heartbeat_logs:="/var/log/beats"}
|
||||
: ${heartbeat_data:="/var/db/beats/heartbeat"}
|
||||
|
||||
|
||||
# daemon
|
||||
start_precmd=heartbeat_prestart
|
||||
command=/usr/sbin/daemon
|
||||
pidfile="/var/run/${name}"
|
||||
command_args="-frP ${pidfile} /usr/local/sbin/${name} ${heartbeat_flags} --path.config ${heartbeat_config} --path.home ${heartbeat_home} --path.data ${heartbeat_data} --path.logs ${heartbeat_logs} -c ${heartbeat_conffile}"
|
||||
|
||||
heartbeat_prestart() {
|
||||
# Have to empty rc_flags so they don't get passed to daemon(8)
|
||||
rc_flags=""
|
||||
}
|
||||
|
||||
run_rc_command "$1"
|
Reference in New Issue
Block a user