30 lines
712 B
Bash
30 lines
712 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
# PROVIDE: fluent-bit
|
|
# REQUIRE: DAEMON
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: shutdown
|
|
|
|
# Add the following lines to /etc/rc.conf to enable fluent-bit:
|
|
#
|
|
# fluent_bit_enable (bool): Set to YES to enable fluent-bit
|
|
# Default: NO
|
|
# fluent_bit_config (str): config files to use
|
|
# Default: %%ETCDIR%%/fluent-bit.conf
|
|
# fluent_bit_flags (str): Extra flags passed to fluent-bit
|
|
# fluent_bit_user (str): Default run as user nobody
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="fluent_bit"
|
|
rcvar=${name}_enable
|
|
load_rc_config $name
|
|
|
|
: ${fluent_bit_enable:="NO"}
|
|
: ${fluent_bit_user:="nobody"}
|
|
|
|
command=%%PREFIX%%/bin/fluent-bit
|
|
command_args="--quiet --daemon --config %%ETCDIR%%/fluent-bit.conf"
|
|
|
|
run_rc_command "$1"
|